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

📄 makefile

📁 著名的Jade算法
💻
字号:
# 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -