📄 makefile
字号:
## FILE: Makefile# BY: Christopher Lee Fraley# and Roger B. Dannenberg.# DESC: This file builds various utilities for Nyquist#CC = cc $(CFLAGS)# the unix path gets us switches.h:# the cmt path gets us swlogic.h:CFLAGS = -g -I../sys -I../cmt# Directory info:BINPATH = .# Intgen stuff:intgen: cmdline.o intgen.o $(CC) cmdline.o intgen.o -o $(BINPATH)/intgencmdline.o: cext.h cmdline.hintgen.o: cext.h cmdline.h#sampleprint - dumb but usefulsampleprint: sampleprint.o $(CC) sampleprint.o -o $(BINPATH)/sampleprintsampleprint.o: sampleprint.c#sinesne: sne.o $(CC) sne.o -o $(BINPATH)/snesne.o: sne.c#playplay: play.o $(CC) play.o -o $(BINPATH)/playplay.o: play.c#plotplot: plot.o $(CC) plot.o -o $(BINPATH)/plotplot.o: plot.c#unpackerunpacker_o = unpacker.o convert.ounpacker: $(unpacker_o) $(CC) $(unpacker_o) -o unpacker#packerpacker_o = packer.o convert.opacker: $(packer_o) $(CC) $(packer_o) -o packerclean: rm -f *.ocleaner: clean rm -f intgen play sine plot packer unpacker rm -f *.BAK rm -f *~
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -