📄 makefile
字号:
# $Header: Makefile,v 7.2 88/09/20 16:46:02 ceriel Exp $# CFLAGS : options for the C-compilerCFLAGS = -O -D_MINIX -D_POSIX_SOURCE -wa# LDFLAGS : flags for the loader# -i for a PDP-11 with separate I/D (not necessary)LDFLAGS = -i# BINDIR : where the binary will go when you type "make install"BINDIR = /usr/bin# LIBRARIES : -ltermcap or -ltermlib,# -lPW on USG systems (System III, System V),# -ljobs on Berkeley Unix system (4.1, 2.8?, 2.9)LIBRARIES =HFILES= assert.h\ commands.h\ display.h\ getcomm.h\ getline.h\ help.h\ in_all.h\ keys.h\ machine.h\ main.h\ options.h\ output.h\ pattern.h\ process.h\ prompt.h\ term.hCFILES= assert.c\ commands.c\ display.c\ getcomm.c\ getline.c\ help.c\ keys.c\ machine.c\ main.c\ options.c\ output.c\ pattern.c\ process.c\ prompt.c\ term.cOFILES= assert.o\ commands.o\ display.o\ getcomm.o\ getline.o\ help.o\ keys.o\ machine.o\ main.o\ options.o\ output.o\ pattern.o\ process.o\ prompt.o\ term.oall: yapyap: $(OFILES) $(CC) $(LDFLAGS) -o yap $(OFILES) $(LIBRARIES) install -S 16kw yapinstall: $(BINDIR)/yap $(BINDIR)/more$(BINDIR)/yap: yap install -cs -o bin yap $@$(BINDIR)/more: $(BINDIR)/yap install -l $? $@clean: rm -f yap $(OFILES) a.out core *.bakpr: pr Makefile $(HFILES) $(CFILES)lint: lint $(DEFINES) $(CFILES)#AUTOAUTOAUTOAUTOAUTOAUTOAUTOAUTOAUTOAUTOassert.o: assert.hassert.o: in_all.hassert.o: output.hassert.o: term.hcommands.o: assert.hcommands.o: commands.hcommands.o: display.hcommands.o: getcomm.hcommands.o: getline.hcommands.o: help.hcommands.o: in_all.hcommands.o: keys.hcommands.o: machine.hcommands.o: main.hcommands.o: options.hcommands.o: output.hcommands.o: pattern.hcommands.o: process.hcommands.o: prompt.hcommands.o: term.hdisplay.o: assert.hdisplay.o: display.hdisplay.o: getline.hdisplay.o: in_all.hdisplay.o: machine.hdisplay.o: main.hdisplay.o: options.hdisplay.o: output.hdisplay.o: process.hdisplay.o: term.hgetcomm.o: assert.hgetcomm.o: commands.hgetcomm.o: display.hgetcomm.o: getcomm.hgetcomm.o: getline.hgetcomm.o: in_all.hgetcomm.o: keys.hgetcomm.o: machine.hgetcomm.o: main.hgetcomm.o: output.hgetcomm.o: process.hgetcomm.o: prompt.hgetcomm.o: term.hgetline.o: assert.hgetline.o: display.hgetline.o: getline.hgetline.o: in_all.hgetline.o: main.hgetline.o: options.hgetline.o: output.hgetline.o: process.hgetline.o: term.hhelp.o: commands.hhelp.o: display.hhelp.o: help.hhelp.o: in_all.hhelp.o: keys.hhelp.o: machine.hhelp.o: main.hhelp.o: options.hhelp.o: output.hhelp.o: prompt.hhelp.o: term.hkeys.o: assert.hkeys.o: commands.hkeys.o: in_all.hkeys.o: keys.hkeys.o: machine.hkeys.o: prompt.hmachine.o: assert.hmachine.o: getline.hmachine.o: in_all.hmachine.o: machine.hmain.o: commands.hmain.o: display.hmain.o: in_all.hmain.o: main.hmain.o: options.hmain.o: output.hmain.o: process.hmain.o: prompt.hmain.o: term.hoptions.o: display.hoptions.o: in_all.hoptions.o: options.hoptions.o: output.houtput.o: in_all.houtput.o: main.houtput.o: output.hpattern.o: in_all.hpattern.o: pattern.hprocess.o: commands.hprocess.o: display.hprocess.o: getline.hprocess.o: in_all.hprocess.o: main.hprocess.o: options.hprocess.o: output.hprocess.o: process.hprocess.o: prompt.hprompt.o: display.hprompt.o: getcomm.hprompt.o: getline.hprompt.o: in_all.hprompt.o: main.hprompt.o: options.hprompt.o: output.hprompt.o: process.hprompt.o: prompt.hprompt.o: term.hterm.o: display.hterm.o: getline.hterm.o: in_all.hterm.o: keys.hterm.o: machine.hterm.o: main.hterm.o: options.hterm.o: output.hterm.o: term.h
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -