File indexing completed on 2025-06-29 05:06:36

0001 COMPILER = g++
0002 CXXFLAGS = -Wall -pedantic -Wno-long-long
0003 INCLUDEDIRS = -I../../include -I../../include/private -I.. -I/usr/include/postgresql 
0004 LIBDIRS = -L../../src/core -L../../src/backends/postgresql -L/usr/lib/x86_64-linux-gnu
0005 LIBS = -lsoci_postgresql -lsoci_core -ldl -lpq
0006 
0007 test-postgresql : test-postgresql.cpp
0008         ${COMPILER} $? -o $@ ${INCLUDEDIRS} ${LIBDIRS} ${LIBS}
0009 
0010 
0011 clean :
0012         rm -f test-postgresql