BSD 4_4 release
[unix-history] / usr / src / lib / libterm / Makefile
index 0d30533..ba4218b 100644 (file)
@@ -1,65 +1,13 @@
-#
-# Copyright (c) 1987 Regents of the University of California.
-# All rights reserved.  The Berkeley software License Agreement
-# specifies the terms and conditions for redistribution.
-#
-#      @(#)Makefile    5.3     (Berkeley)      %G%
-#
-CFLAGS=        -O -DCM_N -DCM_GT -DCM_B -DCM_D
-LIBC=  /lib/libc.a
-SRCS=  termcap.c tgoto.c tputs.c
-OBJS=  termcap.o tgoto.o tputs.o
-
-.c.o:
-       ${CC} ${CFLAGS} -c -p $*.c
-       ld -x -r -o profiled/$*.o $*.o
-       ${CC} ${CFLAGS} -c $*.c
-       ld -X -r $*.o
-       mv a.out $*.o
-
-all: termcap.a termcap_p.a
-
-termcap.a termcap_p.a: ${OBJS}
-       ar cr termcap.a ${OBJS}
-       cd profiled; ar cr ../termcap_p.a ${OBJS}
-
-test:
-       ranlib termcap.a
-       ${CC} ${CFLAGS} -o tc1 tc1.c termcap.a
-       ${CC} ${CFLAGS} -o tc2 tc2.c termcap.a
-       ${CC} ${CFLAGS} -o tc3 tc3.c termcap.a
-
-clean: FRC
-       rm -f ${OBJS} core profiled/*.o termcap.a termcap_p.a
+#      @(#)Makefile    8.1 (Berkeley) 6/4/93
 
 
-depend: FRC
-       mkdep ${CFLAGS} ${SRCS}
-
-install: FRC
-       install -o bin -g bin -m 644 termcap.a ${DESTDIR}/usr/lib/libtermcap.a
-       rm -f ${DESTDIR}/usr/lib/libtermlib.a
-       ln ${DESTDIR}/usr/lib/libtermcap.a ${DESTDIR}/usr/lib/libtermlib.a
-       ranlib ${DESTDIR}/usr/lib/libtermcap.a
-       install -o bin -g bin -m 644 termcap_p.a ${DESTDIR}/usr/lib/libtermcap_p.a
-       rm -f ${DESTDIR}/usr/lib/libtermlib_p.a
-       ln ${DESTDIR}/usr/lib/libtermcap_p.a ${DESTDIR}/usr/lib/libtermlib_p.a
-       ranlib ${DESTDIR}/usr/lib/libtermcap_p.a
-
-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.
+LIB=   termcap
+CFLAGS+=-DCM_N -DCM_GT -DCM_B -DCM_D
+SRCS=  termcap.c tgoto.c tputs.c
 
 
-termcap.o: termcap.c /usr/include/ctype.h
-tgoto.o: tgoto.c
-tputs.o: tputs.c /usr/include/sgtty.h /usr/include/sys/ioctl.h
-tputs.o: /usr/include/sys/ttychars.h /usr/include/sys/ttydev.h
-tputs.o: /usr/include/ctype.h
+MAN3=  termcap.0
+MLINKS=        termcap.3 tgetent.3 termcap.3 tgetflag.3 termcap.3 tgetnum.3 \
+       termcap.3 tgetstr.3 termcap.3 tgoto.3 termcap.3 tputs.3
+LINKS= ${LIBDIR}/libtermcap.a ${LIBDIR}/libtermlib.a \
+       ${LIBDIR}/libtermcap_p.a ${LIBDIR}/libtermlib_p.a
 
 
-# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
+.include <bsd.lib.mk>