makefile
来自「gpstk1.5的有关内容 对于刚刚接触gps有一定的帮助 很有用的啊」· 代码 · 共 30 行
TXT
30 行
## $Id: Makefile 71 2006-08-01 18:46:39Z ehagen $## To use these routines the GPSTk shared library either needs to be# installed as a system shared library, or the environment variable# LD_LIBRARY_PATH needs to set to the directory where the shared # library file resides#all : readRinexObsFast.oct readRinexObsGeom.oct \ calculatePosition.octreadRinexObsFast.oct: readRinexObsFast.cpp $(make_oct)readRinexObsGeom.oct: readRinexObsGeom.cpp $(make_oct)calculatePosition.oct: calculatePosition.cpp $(make_oct)define make_oct @echo "making oct file: $@" @echo "mkoctfile $(CXXFLAGS) -o $@ $^ $(LDLIBS)" mkoctfile -I../src -L../src -lgpstk -o $@ $^ $(LDLIBS) chmod 755 $@ for file in $^ ; do $(RM) $$file.o ; done endef
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?