From 7c9f071fd816de200bc832e97bb61360f100f86c Mon Sep 17 00:00:00 2001 From: Tom London Date: Sat, 8 Dec 1979 22:19:20 -0800 Subject: [PATCH] BSD 3 development Work on file usr/src/cmd/liszt/Makefile Synthesized-from: 3bsd --- usr/src/cmd/liszt/Makefile | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 usr/src/cmd/liszt/Makefile diff --git a/usr/src/cmd/liszt/Makefile b/usr/src/cmd/liszt/Makefile new file mode 100644 index 0000000000..8b375c9766 --- /dev/null +++ b/usr/src/cmd/liszt/Makefile @@ -0,0 +1,25 @@ +# Lisp compiler `liszt' makefile. Opus 31g. +# source is in complra.l complrb.l complrc.l complrd.l +FILES= compmacs.l complra.l complrb.l complrc.l complrd.l +LISP= /usr/ucb/lisp +LISZT= /usr/ucb/liszt + +liszt: complra.o complrb.o complrc.o complrd.o ${LISP} + ${LISP} < loadcomps.l + @echo Compiler built + +install: + mv liszt ${DESTDIR}/usr/ucb/liszt + +clean: + rm -f *.s *.o *.fasl *.msg *.map liszt uctolc + +.SUFFIXES: .l +.l.o : + ${LISZT} $< < /dev/null + +tags: /dev/tty uctolc + awk -f ltags ${FILES} | uctolc | sort > tags + +uctolc: uctolc.c + cc -O uctolc.c -o uctolc -- 2.20.1