386BSD 0.1 development
[unix-history] / usr / src / lib / libterm / Makefile
index 1f4a7c4..1e24ca1 100644 (file)
@@ -1,68 +1,13 @@
-#
-# Copyright (c) 1987 The Regents of the University of California.
-# All rights reserved.
-#
-# Redistribution and use in source and binary forms are permitted
-# provided that the above copyright notice and this paragraph are
-# duplicated in all such forms and that any documentation,
-# advertising materials, and other materials related to such
-# distribution and use acknowledge that the software was developed
-# by the University of California, 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'' AND WITHOUT ANY EXPRESS OR
-# IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
-#
-#      @(#)Makefile    5.5 (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
-MAN=   termcap.0
-
-.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
+#      @(#)Makefile    5.10 (Berkeley) 6/1/90
 
 
-clean:
-       rm -f ${OBJS} core profiled/*.o termcap.a termcap_p.a
-
-cleandir: clean
-       rm -f ${MAN} tags .depend
-
-depend:
-       mkdep ${CFLAGS} ${SRCS}
-
-install: ${MAN}
-       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
-       install -c -o bin -g bin -m 444 termcap.0 ${DESTDIR}/usr/man/cat3
+LIB=   termcap
+CFLAGS+=-DCM_N -DCM_GT -DCM_B -DCM_D
+SRCS=  termcap.c tgoto.c tputs.c
 
 
-lint:
-       lint ${CFLAGS} ${SRCS}
+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
 
 
-tags:
-       ctags ${SRCS}
+.include <bsd.lib.mk>