idle

来自「seismic software,very useful」· 代码 · 共 54 行

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