add man page, cleanup
[unix-history] / usr / src / old / tp / Makefile
index 4e89c2f..9f4855f 100644 (file)
@@ -1,46 +1,47 @@
 #
 #
-# Copyright (c) 1987 Regents of the University of California.
-# All rights reserved.  The Berkeley software License Agreement
-# specifies the terms and conditions for redistribution.
+# Copyright (c) 1987 The Regents of the University of California.
+# All rights reserved.
 #
 #
-#      @(#)Makefile    4.3     (Berkeley)      %G%
+# 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 MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+#
+#      @(#)Makefile    4.4 (Berkeley) %G%
 #
 CFLAGS=        -O
 LIBC=  /lib/libc.a
 SRCS=  tp0.c tp1.c tp2.c tp3.c
 OBJS=  tp0.o tp1.o tp2.o tp3.o
 #
 CFLAGS=        -O
 LIBC=  /lib/libc.a
 SRCS=  tp0.c tp1.c tp2.c tp3.c
 OBJS=  tp0.o tp1.o tp2.o tp3.o
+MAN=   tp.0
 
 all: tp
 
 
 all: tp
 
-tp:    ${OBJS} ${LIBC}
+tp: ${OBJS} ${LIBC}
        ${CC} -o $@ ${CFLAGS} ${OBJS}
 
        ${CC} -o $@ ${CFLAGS} ${OBJS}
 
-clean: FRC
+clean:
        rm -f ${OBJS} core tp
 
        rm -f ${OBJS} core tp
 
-depend: FRC
+cleandir: clean
+       rm -f ${MAN} tags .depend
+
+depend: ${SRCS}
        mkdep ${CFLAGS} ${SRCS}
 
        mkdep ${CFLAGS} ${SRCS}
 
-install: FRC
+install: ${MAN}
        install -s -o bin -g bin -m 755 tp ${DESTDIR}/bin/tp
        install -s -o bin -g bin -m 755 tp ${DESTDIR}/bin/tp
+       install -c -o bin -g bin -m 444 ${MAN} ${DESTDIR}/usr/man/cat1
 
 
-lint: FRC
+lint: ${SRCS}
        lint ${CFLAGS} ${SRCS}
 
        lint ${CFLAGS} ${SRCS}
 
-tags: FRC
+tags: ${SRCS}
        ctags ${SRCS}
        ctags ${SRCS}
-
-FRC:
-
-# DO NOT DELETE THIS LINE -- mkdep uses it.
-# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
-
-tp0.o: tp0.c tp.h tp_defs.h
-tp1.o: tp1.c tp.h
-tp2.o: tp2.c tp.h /usr/include/stdio.h /usr/include/sys/param.h
-tp2.o: /usr/include/sys/types.h /usr/include/signal.h
-tp2.o: /usr/include/machine/machparam.h /usr/include/sys/stat.h
-tp2.o: /usr/include/sys/dir.h
-tp3.o: tp3.c tp.h
-
-# IF YOU PUT ANYTHING HERE IT WILL GO AWAY