date and time created 90/06/17 14:38:43 by bostic
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Mon, 18 Jun 1990 05:38:43 +0000 (21:38 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Mon, 18 Jun 1990 05:38:43 +0000 (21:38 -0800)
SCCS-vsn: old/pcc/f1.tahoe/Makefile 5.1

usr/src/old/pcc/f1.tahoe/Makefile [new file with mode: 0644]

diff --git a/usr/src/old/pcc/f1.tahoe/Makefile b/usr/src/old/pcc/f1.tahoe/Makefile
new file mode 100644 (file)
index 0000000..9cb459e
--- /dev/null
@@ -0,0 +1,26 @@
+#      @(#)Makefile    5.1 (Berkeley) %G%
+
+PROG=  f1
+MIP=   ${.CURDIR}/../mip
+CCOM=  ${.CURDIR}/../ccom.${MACHINE}
+CFLAGS+=-DFORT -I. -I${.CURDIR} -I${CCOM} -I${MIP}
+SRCS=  allo.c common.c fort.c local2.c match.c order.c reader.c table.c
+NOMAN= noman
+.PATH: ${MIP} ${CCOM}
+CLEANFILES+=pcclocal.h
+
+table.o: ${CCOM}/table.c
+       ${CC} ${CFLAGS} -c -R ${CCOM}/table.c
+
+common.o: ${MIP}/common.c
+       ${CC} ${CFLAGS} -DPASS2COMMON -c ${.ALLSRC}
+
+pcclocal.h: ${.CURDIR}/../ccom.vax/localdefs.h /usr/include/pcc.h
+       cat ${.ALLSRC} | \
+           egrep '^#[  ]*(define[      ][      ]*PCC(F|T|TM|OM)?_|ifdef|ifndef|endif)' | \
+           sed -e 's/PCC[A-Z]*_//' > ${.TARGET}
+
+.depend: pcclocal.h
+
+.include <bsd.prog.mk>
+