|
|
1.1 root 1: # FP interpreter/compiler
2: # Copyright (c) 1982 Scott B. Baden
3: # Berkeley, California
4: #
5: # Copyright (c) 1982 Regents of the University of California.
6: # All rights reserved. The Berkeley software License Agreement
7: # specifies the terms and conditions for redistribution.
8: #
9: # @(#)Makefile 4.5 (Berkeley) 7/30/89
10: #
11: DESTDIR =
12:
13: FP_SYS = runFp.l fpMain.l\
14: scanner.l parser.l codeGen.l\
15: primFp.l utils.l fpPP.l handlers.l fpMeasures.l
16:
17: FP_SYSO = runFp.o fpMain.o\
18: scanner.o parser.o codeGen.o\
19: primFp.o utils.o fpPP.o handlers.o fpMeasures.o
20:
21: .SUFFIXES:
22: .SUFFIXES: .l .o
23: .l.o:
24: liszt -axq $<
25:
26:
27: all fp: ${FP_SYSO}
28: /bin/rm -f fp
29: echo "(progn (load 'runFp)\
30: (dumplisp fp))" | lisp > junk.fp
31: chmod 755 fp
32:
33: ${FP_SYSO}: specials.l fpMacs.o
34:
35:
36: install:
37: install -s -o bin -g bin -m 755 fp ${DESTDIR}/usr/bin
38:
39: clean:
40: rm -f core *.[ox] junk.fp
41:
42: cleandir: clean
43: rm -f ${MAN} tags .depend
44:
45:
46: listings: ${FP_SYS}
47: print runFp.l fpMain.l scanner.l parser.l codeGen.l \
48: primFp.l utils.l fpPP.l handlers.l fpMeasures.l \
49: specials.l fpMacs.l &
50:
51: depend:
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.