⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 gpstk1.5的有关内容 对于刚刚接触gps有一定的帮助 很有用的啊
💻
字号:
## $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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -