From 277b1012087fbe5b353d2138906ace8f5616573c Mon Sep 17 00:00:00 2001 From: Ralph Campbell Date: Thu, 10 Mar 1983 00:57:10 -0800 Subject: [PATCH] date and time created 83/03/09 16:57:10 by ralph SCCS-vsn: old/vpr/vtools/fed/Makefile 4.1 --- usr/src/old/vpr/vtools/fed/Makefile | 33 +++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 usr/src/old/vpr/vtools/fed/Makefile diff --git a/usr/src/old/vpr/vtools/fed/Makefile b/usr/src/old/vpr/vtools/fed/Makefile new file mode 100644 index 0000000000..0bd868758a --- /dev/null +++ b/usr/src/old/vpr/vtools/fed/Makefile @@ -0,0 +1,33 @@ +# +# Makefile 4.1 83/03/09 +# +CFLAGS= -O +SRCS= fed.h \ + fed.c subr.c io.c +OBJS= fed.o subr.o io.o +LIBS= -lm -l2648 +VGRIND= csh /usr/ucb/vgrind +DESTDIR= + +fed: ${OBJS} /usr/lib/lib2648.a + ${CC} -o fed ${CFLAGS} ${OBJS} ${LIBS} + +tags: /tmp + ctags ${SRCS} + +print: + print ${SRCS} + +vgrind: + tee index < /dev/null + ${VGRIND} -h fed ${SRCS} + ${VGRIND} -x index + +lint: + lint ${SRCS} > lint.out + +clean: + rm -f fed ${OBJS} errs core trace + +install: fed + install -s fed ${DESTDIR}/usr/ucb/fed -- 2.20.1