apigen.make
来自「一个非常好的人工智能开发工具开源软件」· MAKE 代码 · 共 42 行
MAKE
42 行
## See the file "L2_RTI_EO1/disclaimers-and-notices-L2.txt" for # information on usage and redistribution of this file, # and for a DISCLAIMER OF ALL WARRANTIES.## Make sure that Livingstone is built before running this make file# It depends on *.h files in ~/mba/cpp/include# and the *.a or *.so L2 library in ~/mba/cpp/lib# VariablesCPP=g++LIVDIR = /home/taylor/L2Skunk/released_2.7.4/mba/cppINCLUDE = -I$(LIVDIR)/includeLIBRARY = -L$(LIVDIR)/lib -R/usr/local/lib -R$(LIVDIR)/lib -lxerces-c1_2 -llivdllCOMPILEFLAGS = -c -g -O2 -fPIC -Wall -Wno-non-virtual-dtor \-Wno-non-template-friend -DHAVE_CONFIG_H -DPIC # Rulesdefault : allall : apiGenclean : rm *.o rm build_tableOBJECTS = api_gen.o api_gen.o : api_gen.cpp $(CPP) $(COMPILEFLAGS) $(INCLUDE) api_gen.cppapiGen : api_gen.o $(CPP) -o apiGen $(OBJECTS) $(LIBRARY)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?