📄 makefile
字号:
# Stand Alone Position - stdalone.c + inp.txt -> out.txt# Single Difference Position - singdif.c + inpsd.txt -> outsd.txt# Smooth - sdsmooth.c + rangeref.txt + rangemov.txt + support.txt -> outsdsms.txtCC=gccCOMBINS = satpos.o solve.o xyz2lla.o calc_error.o%.o: %.c $(CC) $(FLAGS) -c -o $@ $<stdalone: stdalone_main.o stdalone.o $(COMBINS) $(CC) -o stdalone stdalone_main.o stdalone.o $(COMBINS) -lm singldif: singldif_main.o singldif.o $(COMBINS) $(CC) -o singldif singldif_main.o singldif.o $(COMBINS) -lm sdsmooth: sdsmooth_main.o sdsmooth.o $(COMBINS) $(CC) -o sdsmooth sdsmooth_main.o sdsmooth.o $(COMBINS) -lm
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -