From 0998157fe62689c4ec9c101f5a3a0eadb8365975 Mon Sep 17 00:00:00 2001 From: Keith Bostic Date: Sun, 13 Dec 1987 01:38:54 -0800 Subject: [PATCH] date and time created 87/12/12 17:38:54 by bostic SCCS-vsn: usr.bin/f77/f77.vax/Makefile 5.1 --- usr/src/usr.bin/f77/f77.vax/Makefile | 53 ++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 usr/src/usr.bin/f77/f77.vax/Makefile diff --git a/usr/src/usr.bin/f77/f77.vax/Makefile b/usr/src/usr.bin/f77/f77.vax/Makefile new file mode 100644 index 0000000000..befde2da50 --- /dev/null +++ b/usr/src/usr.bin/f77/f77.vax/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=VAX -DTARGET=VAX -DFAMILY=PCC -DUCBVAXASM -DUCBPASS2 \ + -O -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