makefile

来自「vovida的软交换」· 代码 · 共 34 行

TXT
34
字号
###################################################################### COMPLING: g++ -I/usr/include/mysql -c ex1.cxx# LINKING:  g++ -L/usr/lib/mysql /usr/lib/libsqlplus.so -o ex1 ex1.o# (same as above)# LINKING:  g++ -L/usr/lib/mysql -lsqlplus -o ex1 ex1.o#####################################################################BUILD = ../../../build	 include $(BUILD)/Makefile.prePACKAGES += UTIL PTHREAD PGSQL # CXXFLAGS += -gTARGET_LIBRARY = libdbmanager# Note to get test programs to build you need to create 'test' directories # under the relavent bin. and obj. directories. Then uncomment the next # line and rebuild.# TESTPROGRAMS = test/dbmgrtest.cxx # name of all files to be compiled (don't include header files)ifeq ($(VOCAL_USE_NEWPROV),true)SRC = \	ConnectionManager.cxx \	DBInfo.cxx \	DBConnThread.cxx \	PGSQLConnection.cxx \	PGSQLResultset.cxxendifinclude $(BUILD)/Makefile.post

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?