?? makefile
字號:
# 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*
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -