Removing large file for data load. Modified README to generate mysql and psql input...
[csql.git] / examples / dbapi / Makefile
blob796ee6868c0cc229666ea15d41baf69abe2c1ea3
1 OSNAME = $(shell uname -s)
2 PlatForm=supported
4 ifeq ($(OSNAME), SunOS)
5 CPlus = CC
6 CPlusFlags = -O2 -w -mt -xarch=v8
7 SYSLIBS=-ldl -lnsl -lsocket -lposix4
8 else
9 ifeq ($(OSNAME), Linux)
10 CPlus = g++
11 CPlusFlags = -O2 -w
12 SYSLIBS= -rdynamic -lrt -lpthread -lcrypt
13 else
14 PlatForm=notsupported
15 all:
16 echo "CSQL is not supported on $(OSNAME) platform"
17 endif
18 endif
20 INCL= -I$(CSQL_INSTALL_ROOT)/include
21 LIBS= -L$(CSQL_INSTALL_ROOT)/lib -lcsql
23 TARGETS = \
24 dbapiexample insert update delete
26 ifeq ($(PlatForm), supported)
27 all: $(TARGETS)
28 endif
30 .c.o:.c
31 $(CPlus) $(CPlusFlags) $(INCL) -c -o $@ $<
33 dbapiexample: dbapiexample.o
34 $(CPlus) $(CPlusFlags) -o $@ $< $(LIBS) $(SYSLIBS)
35 insert: manDBAPIinsert.o
36 $(CPlus) $(CPlusFlags) -o $@ $< $(LIBS) $(SYSLIBS)
37 update: manDBAPIupdate.o
38 $(CPlus) $(CPlusFlags) -o $@ $< $(LIBS) $(SYSLIBS)
39 delete: manDBAPIdelete.o
40 $(CPlus) $(CPlusFlags) -o $@ $< $(LIBS) $(SYSLIBS)
42 clean:
43 rm -f *.o