78f00ac44c
-- This OCaml library provides an interface to PostgreSQL (tested with versions 7.0.2, 7.1.3 and 7.4.1), an efficient and reliable, open source, relational database. Almost all functionality available through the C-API (libpq) is replicated in a type-safe way. This library uses objects for representing database connections and results of queries.
19 lines
473 B
Plaintext
19 lines
473 B
Plaintext
$OpenBSD: patch-Makefile,v 1.1.1.1 2004/06/12 22:03:12 avsm Exp $
|
|
--- Makefile.orig 2004-06-12 11:19:59.000000000 +0100
|
|
+++ Makefile 2004-06-12 11:20:28.000000000 +0100
|
|
@@ -2,9 +2,12 @@
|
|
|
|
EXAMPLES = $(filter-out examples/CVS, $(wildcard examples/*))
|
|
|
|
-.PHONY: all
|
|
+.PHONY: all allopt
|
|
all:
|
|
- @cd lib && $(MAKE) byte-code-library native-code-library
|
|
+ @cd lib && $(MAKE) byte-code-library
|
|
+
|
|
+allopt:
|
|
+ @cd lib && $(MAKE) native-code-library
|
|
|
|
.PHONY: examples
|
|
examples:
|