📄 decoder.make
字号:
## 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 : printNameclean : rm *.o rm printNameOBJECTS = printName.o NameMapper.oNameMapper.o : NameMapper.cpp NameMapper.h $(CPP) $(COMPILEFLAGS) $(INCLUDE) NameMapper.cppprintName.o : printName.cpp NameMapper.o $(CPP) $(COMPILEFLAGS) $(INCLUDE) printName.cppprintName : printName.o NameMapper.o $(CPP) -o printName $(OBJECTS) $(LIBRARY)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -