|
|
1.1 root 1: #
2: # Copyright (c) 1984, 1985 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: # Makefile call makefiles call makefiles...
13: #
14: # Must make library before compiling the programs that call it.
15: SUBDIR= lib bin
16:
17: all: ${SUBDIR}
18:
19: # need to install library before anything else can be made
20:
21: lib: FRC
22: cd $@; make ${MFLAGS} install
23:
24: bin: FRC
25: cd $@; make ${MFLAGS}
26:
27: FRC:
28:
29: install:
30: for i in ${SUBDIR}; do \
31: (cd $$i; make ${MFLAGS} install); done
32:
33: clean:
34: rm -f a.out core *.s *.o
35: for i in ${SUBDIR}; do \
36: (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.