makefile
来自「UAV 自动驾驶的」· 代码 · 共 75 行
TXT
75 行
#!/usr/bin/make# $Id: Makefile,v 2.1 2002/09/30 15:20:49 tramm Exp $################################### All things that we will build#LIBS = \ libmat \TESTS = \ benchmark \NO=\ testmat \ testpos \ testkalman \ testnav \## Our matrix math library#libmat.srcs = \ Nav.cpp \ Vector_Rotate.cpp \ Quat.cpp \ SixDOF.cpp \NO=\ rk4.cpp \ old-matlib.cpp \ vect.cpp \ old-quat.cpp \ old-nav_funcs.cpp \####################################### Programs##CFLAGS += -pg#LDFLAGS += -pg## Benchmark times common operations#benchmark.srcs = benchmark.cppbenchmark.libs = libmat.a## Compare the matrix manipulation to the old version library#testmat.srcs = \ testmat.cpp \ old-matlib.cpp \ old-quat.cpp \ old-nav_funcs.cpp \ old-vect.cpp \testmat.libs = libmat.a## Test the position conversion code#testpos.srcs = \ testpos.cpp \testpos.libs = libmat.a# Bring in our generic rules and targetsinclude ../Makefile.common
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?