date and time created 85/03/01 15:27:08 by jaap
authorJaap Akkerhuis <jaap@ucbvax.Berkeley.EDU>
Sat, 2 Mar 1985 07:27:08 +0000 (23:27 -0800)
committerJaap Akkerhuis <jaap@ucbvax.Berkeley.EDU>
Sat, 2 Mar 1985 07:27:08 +0000 (23:27 -0800)
SCCS-vsn: local/ditroff/ditroff.okeeffe/eqn/o.makefile 1.1

usr/src/local/ditroff/ditroff.okeeffe/eqn/o.makefile [new file with mode: 0644]

diff --git a/usr/src/local/ditroff/ditroff.okeeffe/eqn/o.makefile b/usr/src/local/ditroff/ditroff.okeeffe/eqn/o.makefile
new file mode 100644 (file)
index 0000000..69f557a
--- /dev/null
@@ -0,0 +1,34 @@
+CFLAGS=-O
+YFLAGS=-d
+PREFIX = SCCS/s.
+
+SOURCE = e.y e.h diacrit.c eqnbox.c font.c fromto.c funny.c glob.c integral.c \
+ io.c lex.c lookup.c mark.c matrix.c move.c over.c paren.c \
+ pile.c shift.c size.c sqrt.c text.c
+
+FILES =  diacrit.o eqnbox.o font.o fromto.o funny.o glob.o integral.o \
+ io.o lex.o lookup.o mark.o matrix.o move.o over.o paren.o \
+ pile.o shift.o size.o sqrt.o text.o e.o
+
+a.out: $(FILES)
+       cc -n -O $(CFLAGS) $(FILES) 
+
+y.tab.h:       e.o
+
+e.def: y.tab.h
+       -cmp -s y.tab.h e.def || cp y.tab.h e.def
+
+$(FILES):      e.h e.def
+
+list:
+       @pr TODO $(SOURCE) makefile
+
+install:
+       strip a.out
+       cp a.out /usr/bin/eqn
+
+lint:  y.tab.c
+       lint -spb *.c
+
+clean:
+       rm -f a.out *.o make.out y.tab.h e.def