# # Copyright (c) 1984, 1985 Xerox Corp. # DESTBIN = ../../bin DESTLIB = ../../lib DESTMAN = ../../man DESTINCLUDE = ../../include MFLAGS = DESTBIN=../${DESTBIN} DESTLIB=../${DESTLIB} DESTMAN=../${DESTMAN} \ DESTINCLUDE=../${DESTINCLUDE} CFLAGS= -O # Programs that live in subdirectories, and have makefiles of their own. # SUBDIR= iptotext ipmetrics makextdev maha charset dipress restotext stackres texttoip ipf all: ${SUBDIR} ${SUBDIR}: FRC cd $@; make ${MFLAGS} FRC: install: for i in ${SUBDIR}; do \ (cd $$i; make ${MFLAGS} install); done cp qip ${DESTBIN} clean: rm -f a.out core *.s *.o for i in ${SUBDIR}; do \ (cd $$i; make ${MFLAGS} clean); done