File indexing completed on 2025-07-13 05:08:33
0001 COMPILER = g++ 0002 CXXFLAGS = -Wall -pedantic -Wno-long-long 0003 INCLUDEDIRS = -I../../include -I../../include/private -I.. \ 0004 -I${ORACLE_HOME}/rdbms/public 0005 LIBDIRS = -L../../src/core -L../../src/backends/oracle -L${ORACLE_HOME}/lib 0006 LIBS = -lsoci_core -lsoci_oracle -ldl -lclntsh -locci -lnnz11 0007 0008 test-oracle : test-oracle.cpp 0009 ${COMPILER} $? -o $@ ${INCLUDEDIRS} ${LIBDIRS} ${LIBS} 0010 0011 0012 clean : 0013 rm -f test-oracle