📄 makefile.txt
字号:
# file: Makefile# 'make' description file for compiling ecgsynCFILES = ecgsyn.c opt.c dfour1.c ran1.cCFLAGS = -Oecgsyn: $(CFILES) opt.h $(CC) $(CFLAGS) -o ecgsyn $(CFILES) -lmdfour1.c ran1.c: @echo "To compile ecgsyn, first get copies of dfour1.c and ran1.c" @echo "(from Numerical Recipes in C) and place them in this directory." @echo "Then type:" @echo " make ecgsyn" @exit 1clean: rm -f *~ *.o *.obj
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -