|
|
1.1 ! root 1: # ! 2: # Copyright (c) 1984, 1985, 1986 Xerox Corp. ! 3: # ! 4: DESTBIN = ../../bin ! 5: DESTLIB = ../../lib ! 6: DESTMAN = ../../man ! 7: DESTINCLUDE = ../../include ! 8: MFLAGS = DESTBIN=../${DESTBIN} DESTLIB=../${DESTLIB} DESTMAN=../${DESTMAN} \ ! 9: DESTINCLUDE=../${DESTINCLUDE} ! 10: CFLAGS= -O ! 11: ! 12: # Programs that live in subdirectories, and have makefiles of their own. ! 13: # ! 14: SUBDIR= libip libgetopt ! 15: ! 16: all: ${SUBDIR} ! 17: ! 18: ${SUBDIR}: FRC ! 19: cd $@; make ${MFLAGS} ! 20: ! 21: FRC: ! 22: ! 23: install: ! 24: for i in ${SUBDIR}; do \ ! 25: (cd $$i; make ${MFLAGS} install); done ! 26: ! 27: lint: ! 28: for i in ${SUBDIR}; do \ ! 29: (cd $$i; make ${MFLAGS} lint); done ! 30: ! 31: clean: ! 32: rm -f a.out core *.s *.o ! 33: for i in ${SUBDIR}; do \ ! 34: (cd $$i; make ${MFLAGS} clean); done
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.