📄 idle
字号:
# Makefile for ...cwp/main# Just say "make"SHELL = /bin/sh# Adapt the flags in the following paragraph to your systemROOT = /usr/local/cwpOPTC = -OB = $(ROOT)/binI = $(ROOT)/includeL = $(ROOT)/lib# Don't know how to use next dependency entry, alasD = $I/cwp.hCFLAGS= $(OPTC) -I$ILFLAGS= -L$L -lcwpPROGS = \ $B/ctrlstrip \ $B/fcat \ $B/isatty \ $B/maxints \ $B/newback \ $B/pause \ $B/pgen \ $B/rec \ $B/tINSTALL: $(PROGS) @touch $@$(PROGS): $$(@F).c $(CC) $(CFLAGS) $? $(LFLAGS) -o $@ @chmod 755 $@ @echo $(@F) installed in $B# Some makes don't understand the $$ notation above. In this case# you have to type out the compile paragraph for each PROG. Sigh.# Here's a start, good luck.##$B/fcat: fcat.c# $(CC) $(CFLAGS) $? $(LFLAGS) -o $@# @chmod 755 $@# @echo $(@F) installed in $Bremake: @touch *.c @make ROOT=$(ROOT) OPTC=$(OPTC)clean :
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -