makefile.txt

来自「ecg心电信号产生程序」· 文本 代码 · 共 20 行

TXT
20
字号
# 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 + =
减小字号Ctrl + -
显示快捷键?