makefile
来自「著名的Jade算法」· 代码 · 共 42 行
TXT
42 行
# Totally uneducated Makefile. CC = gccCFLAGS = -Wall## uncomment the line below for debuging info# CFLAGS += -ggdb## switch the comments on the lines below if you're using a motorola or other bigendian processor# CFLAGS += -DINTEL_END -UMOTOR_END# CFLAGS += -UINTEL_END -DMOTOR_END#OBJS = Matutil.o JnS.o testJnS.oHEADERS = Matutil.h JnS.hall : testJnS mextestJnS : $(OBJS) $(CC) $(CFLAGS) -lm $(OBJS) -o testJnStestJnS.o : testJnS.c $(HEADERS) $(CC) $(CFLAGS) -c testJnS.cMatutil.o : Matutil.c $(CC) $(CFLAGS) -c Matutil.cJnS.o : JnS.c Matutil.h Matutil.o $(CC) $(CFLAGS) -c JnS.cmex : JnS.c mex ShibbsR.c ; mex JadeR.c ; mex JointDiag.cclean : rm -fv $(OBJS) Test *~ *.mex*
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?