summaryrefslogtreecommitdiff
path: root/src/interfaces/ecpg/test/Makefile
blob: 164d4978c83bca37beff161be3fafdcb0f738419 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
all: test2 perftest

test2: test2.c
	gcc -g -I ../include -I ../../libpq -o test2 test2.c -L../lib -lecpg -L../../libpq -lpq -lcrypt
test2.c: test2.pgc
	ecpg test2.pgc

perftest: perftest.c
	gcc -g -I ../include -I ../../libpq -o perftest perftest.c -L../lib -lecpg -L../../libpq -lpq -lcrypt
perftest.c: perftest.pgc
	ecpg perftest.pgc

clean:
	/bin/rm test2 test2.c perftest perftest.c log

dep depend: