From 9730721dae4c3c6bf8afe147e355e9f098023580 Mon Sep 17 00:00:00 2001 From: Keith Bostic Date: Sun, 13 Dec 1987 01:39:41 -0800 Subject: [PATCH] date and time created 87/12/12 17:39:41 by bostic SCCS-vsn: usr.bin/f77/f77.tahoe/Makefile 5.1 --- usr/src/usr.bin/f77/f77.tahoe/Makefile | 53 ++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 usr/src/usr.bin/f77/f77.tahoe/Makefile diff --git a/usr/src/usr.bin/f77/f77.tahoe/Makefile b/usr/src/usr.bin/f77/f77.tahoe/Makefile new file mode 100644 index 0000000000..38182e4c5b --- /dev/null +++ b/usr/src/usr.bin/f77/f77.tahoe/Makefile @@ -0,0 +1,53 @@ +# +# Copyright (c) 1987 Regents of the University of California. +# All rights reserved. +# +# Redistribution and use in source and binary forms are permitted +# provided that this notice is preserved and that due credit is given +# to the University of California at Berkeley. The name of the University +# may not be used to endorse or promote products derived from this +# software without specific prior written permission. This software +# is provided ``as is'' without express or implied warranty. +# +# @(#)Makefile 5.1 (Berkeley) %G% +# +CFLAGS= -DHERE=TAHOE -DTARGET=TAHOE -DFAMILY=PCC -DUCBVAXASM \ + -DUCBPASS2 -O -I$(INCLDIR)/usr/include -I../include +LIBC= /lib/libc.a +SRCS= f77.c +OBJS= f77.o + +all: f77 + +f77: ${SRCS} ${LIBC} + ${CC} -o $@ ${CFLAGS} ${SRCS} + +clean: FRC + rm -f ${OBJS} core f77 + +depend: FRC + mkdep -p ${CFLAGS} ${SRCS} + +install: FRC + install -s -o bin -g bin -m 755 f77 ${DESTDIR}/usr/bin/f77 + +lint: FRC + lint ${CFLAGS} ${SRCS} + +tags: FRC + ctags ${SRCS} + +FRC: + +# DO NOT DELETE THIS LINE -- mkdep uses it. +# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY. + +f77: f77.c /usr/include/stdio.h /usr/include/sys/types.h +f77: /usr/include/sys/stat.h /usr/include/ctype.h /usr/include/signal.h +f77: /usr/include/machine/trap.h /usr/include/sys/time.h /usr/include/time.h +f77: /usr/include/sys/resource.h /usr/include/sys/wait.h +f77: /usr/include/machine/machparam.h ../include/defines.h +f77: ../include/machdefs.h drivedefs.h ../include/version.h +f77: /usr/include/errno.h + +# IF YOU PUT ANYTHING HERE IT WILL GO AWAY -- 2.20.1