File: Makefile

package info (click to toggle)
postgresql-ocaml 1.5.4-2%2Betch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 320 kB
  • ctags: 536
  • sloc: ml: 1,143; ansic: 524; sh: 118; makefile: 99
file content (17 lines) | stat: -rw-r--r-- 320 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
-include ../Makefile.conf

OCAMLMAKEFILE = ../OCamlMakefile

SOURCES = postgresql.mli postgresql.ml postgresql_stubs.c
CFLAGS  += -O2 -Wall -pedantic -Wno-long-long -Wno-missing-prototypes
CLIBS   = pq
RESULT  = postgresql

all:

install:	libinstall
uninstall:	libuninstall

clean::	clean-doc

-include $(OCAMLMAKEFILE)