aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/ecpg/test/Makefile
blob: 72f38035d3ab9be247e19fad034e038233a0e6bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
all: test1 test2 test3 test4 perftest dyntest dyntest2

LDFLAGS=-g -I /usr/local/pgsql/include -L/usr/local/pgsql/lib -lecpg -lpq

ECPG=../preproc/ecpg -I../include

.SUFFIXES: .pgc .c

test1: test1.c
test2: test2.c
test3: test3.c
test4: test4.c
perftest: perftest.c
dyntest: dyntest.c
dyntest2: dyntest2.c

.pgc.c:
	$(ECPG) $? 

clean:
	rm -f test1 test2 test3 test4 perftest *.c *.o log dyntest dyntest2