From 087cc4a4854a536b08c54bcaf8c34a5b03a9810f Mon Sep 17 00:00:00 2001 From: CSRG Date: Wed, 15 Mar 1989 22:53:16 -0800 Subject: [PATCH] BSD 4_4 development Work on file usr/src/contrib/connectd/tip/Makefile Synthesized-from: CSRG/cd3/4.4 --- usr/src/contrib/connectd/tip/Makefile | 30 +++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 usr/src/contrib/connectd/tip/Makefile diff --git a/usr/src/contrib/connectd/tip/Makefile b/usr/src/contrib/connectd/tip/Makefile new file mode 100644 index 0000000000..46fdf5f6e5 --- /dev/null +++ b/usr/src/contrib/connectd/tip/Makefile @@ -0,0 +1,30 @@ +CFLAGS= -I../include -DDEFBR=1200 -DDEFFS=BUFSIZ -DPRISTINE +LDFLAGS= +OBJS= cmds.o cmdtab.o partab.o tip.o tipout.o value.o vars.o +SOURCES=cmds.c cmdtab.c partab.c tip.c tipout.c value.c vars.c +CXREF= /usr/ucb/ctags -xw + +tip: ${OBJS} + ${CC} -o tip ${LDFLAGS} ${OBJS} ../libc/libc.a + +${OBJS}: tip.h + + +install: tip + install -s -m 4711 -o ${OWNER} -g ${GROUP} tip ${DESTDIR}/usr/bin/tip + +tags: ${SOURCES} tip.h + ctags -w ${SOURCES} tip.h + +clean: + rm -f tip *.o + +print: + @pr README TODO makefile + @size *.o | pr -h SIZES + @${CXREF} tip.h ${SOURCES} | pr -h XREF + @ls -l | pr + @pr tip.h ${SOURCES} + +lint: + -lint -hbacvx ${CFLAGS} ${SOURCES} -- 2.20.1