blob: 8a7f1f69df49273fdbfca3c0a6a076c224422ea2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
all: test1 test2 perftest
LDFLAGS=-g -I ../include -I ../../libpq -L../lib -lecpg -L../../libpq -lpq -lcrypt --static
test1: test1.c
test1.c: test1.pgc
../preproc/ecpg $?
test2: test2.c
test2.c: test2.pgc
../preproc/ecpg $?
perftest: perftest.c
perftest.c:perftest.pgc
../preproc/ecpg $?
clean:
/bin/rm test1 test2 perftest *.c log
|