⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 操作系统源代码
💻
字号:
# 	Makefile for cawf#	Define UNIX for vanilla Unix systems -- e.g., older DYNIX.##	Define UNIX and USG for System V, BSD 4.3 and for SunOS.##	USG may also be needed if the required string function prototypes --#	e.g., for strrchr() -- are in <string.h> rather than <strings.h>.##DEFS = -DUNIX -DUSG##	Define STDLIB for systems that have <stdlib.h> -- e.g., AIX and#	SunOS.##	Redefine CAWFLIB by adding -DCAWFLIB=\"...\" to DEFS.##DEFS = -DUNIX -DUSG -DCAWFLIB=\"/usr/local/lib/cawf\"##	Customize the install rule.##	-ansi and -pedantic are ANSI compliance options for the gcc compiler.#	Remove them if your compiler objects.##	If you're using xlc 2.1 on AIX 3.2 for the RISC/SYSTEM 6000, you#	must delete the definition of __STR__ (two leading and two trailing#	underscore characters), because the xlc 2.1 compiler incorrectly#	inlines string functions when compiling pass3.c.##DEFS = -DUNIX -DSTDLIB -U__STR__##	Unix systems that have a <malloc.h> need MALLOCH defined, unless#	they also have a <stdlib.h> that provides a function prototype for#	malloc() and its relatives (most do).##DEFS = -DUNIX -DMALLOCHDEFS = -DUNIX -DUSG -DSTDLIBCFLAGS = -i -f -wo -O ${DEFS}HDR = ansi.h cawf.h cawflib.h proto.h regexp.h regmagic.hSRC = cawf.c device.c error.c expand.c expr.c getopt.c macsup.c nreq.c \      output.c pass2.c pass3.c  regerror.c regexp.c store.c string.cOBJ = cawf.o device.o error.o expand.o expr.o getopt.o macsup.o nreq.o \      output.o pass2.o pass3.o  regerror.o regexp.o store.o string.oall:	bsfilt cawfbsfilt: bsfilt.c	${CC} ${CFLAGS} bsfilt.c -o $@	install -S 4kw $@cawf:	${OBJ}	${CC} ${CFLAGS} ${OBJ} -o $@	install -S 56k $@clean:	rm -f *.o a.out core *errs bsfilt cawf${OBJ}:	${HDR}install:	\	/usr/bin/bsfilt /usr/bin/colcrt /usr/bin/cawf \	/usr/bin/nroff /usr/lib/cawf /usr/lib/cawf/common \	/usr/lib/cawf/device.cf /usr/lib/cawf/dumb.dev \	/usr/lib/cawf/man.mac /usr/lib/cawf/me.mac \	/usr/lib/cawf/ms.mac /usr/lib/cawf/mnx.mac/usr/bin/bsfilt:	bsfilt	install -cs -o bin bsfilt $@/usr/bin/colcrt:	/usr/bin/bsfilt	install -l /usr/bin/bsfilt $@/usr/bin/cawf:	cawf	install -cs -o bin cawf $@/usr/bin/nroff:	/usr/bin/cawf	install -l /usr/bin/cawf $@/usr/lib/cawf:		install -d -o bin /usr/lib/cawf/usr/lib/cawf/common:	common	install -c -o bin common $@/usr/lib/cawf/device.cf:	device.cf	install -c -o bin device.cf $@/usr/lib/cawf/dumb.dev:	dumb.dev	install -c -o bin dumb.dev $@/usr/lib/cawf/man.mac:	man.mac	install -c -o bin man.mac $@/usr/lib/cawf/me.mac:	me.mac	install -c -o bin me.mac $@/usr/lib/cawf/ms.mac:	ms.mac	install -c -o bin ms.mac $@/usr/lib/cawf/mnx.mac:	mnx.mac	install -c -o bin mnx.mac $@

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -