📄 makefile.in
字号:
## Makefile.in for CLISP module set oracle## $Id# This will come from the environment# ORACLE_HOME = /usr/local/oracleCC = @CC@CFLAGS = @CFLAGS@# Get Oracle OCI library headers## Oracle likes to move their header files around ... locations by# release are below. $H is the Oracle home.## File 8.0.5 8.1.7# # oci.h $H/rdbms/demo $H/rdbms/demo# ociextp.h $H/plsql/demo $H/rdbms/public# nzt.h $H/network/public $H/rdbms/public### So, we'll just supply the union of all these and that should work# across releases. Until they move them again. ;)ORA_INCLUDES = -I.. -I ${ORACLE_HOME}/rdbms/demo -I ${ORACLE_HOME}/rdbms/public -I ${ORACLE_HOME}/plsql/demo -I ${ORACLE_HOME}/network/publicLN = lnMAKE = makeSHELL = /bin/shDISTRIBFILES = oracle.o orafns.o oiface.o link.sh Makefile oracle.lispdistribdir =all : orafns.o oracle.o oiface.ooracle.c: oracle.lisp $(CLISP) -c oracle.lisporacle.o: oracle.c $(CC) $(CFLAGS) $(INCLUDES) $(ORA_INCLUDES) -c oracle.corafns.o: orafns.c oiface.h $(CC) $(CFLAGS) $(INCLUDES) $(ORA_INCLUDES) -c orafns.coiface.o: oiface.c oiface.h $(CC) $(CFLAGS) $(INCLUDES) $(ORA_INCLUDES) -c oiface.c# Make a moduleclisp-module : all# Make a module distribution into $(distribdir)clisp-module-distrib : clisp-module force $(LN) $(DISTRIBFILES) $(distribdir)clean : force rm -f core *.o *.a rm -f *.aux *.cp *.fn *.ky *.log *.pg *.toc *.tp *.vrdistclean : cleanforce :
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -