2a8fabf4ad
-Convert the include directory over to using bsdmake syntax -Update/add mkfiles -Modify install(1) so that it can create symlinks -Update makefiles to use new install(1) options -Rename /usr/include/ibm to /usr/include/i386 -Create /usr/include/machine symlink to arch header files -Move vm_i386.h to its new home in the /usr/include/i386 -Update source files to #include the header files at their new homes. -Add new gnu-includes target for building GCC headers
107 lines
2.7 KiB
Makefile
107 lines
2.7 KiB
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 -DMALLOCH
|
|
|
|
CC = exec cc
|
|
|
|
DEFS = -DUNIX -DUSG -DSTDLIB
|
|
|
|
CFLAGS = -i -f -wo -O ${DEFS}
|
|
|
|
HDR = ansi.h cawf.h cawflib.h proto.h regexp.h regmagic.h
|
|
|
|
SRC = 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.c
|
|
|
|
OBJ = 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.o
|
|
|
|
all: bsfilt cawf
|
|
|
|
bsfilt: 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 h /usr/bin/bsfilt $@
|
|
|
|
/usr/bin/cawf: cawf
|
|
install -cs -o bin cawf $@
|
|
|
|
/usr/bin/nroff: /usr/bin/cawf
|
|
install -l h /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 $@
|