add man page, cleanup
[unix-history] / usr / src / usr.bin / fpr / Makefile
index 7270a94..dbccfa0 100644 (file)
@@ -1,40 +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    5.1     (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    5.2 (Berkeley) %G%
 #
 CFLAGS=        -O
 LIBC=  /lib/libc.a
 SRCS=  fpr.c
 #
 CFLAGS=        -O
 LIBC=  /lib/libc.a
 SRCS=  fpr.c
-OBJS=  fpr.o
+OBJS=
+MAN=   fpr.0
 
 all: fpr
 
 
 all: fpr
 
-fpr:   ${SRCS} ${LIBC}
+fpr: ${SRCS} ${LIBC}
        ${CC} -o $@ ${CFLAGS} ${SRCS}
 
        ${CC} -o $@ ${CFLAGS} ${SRCS}
 
-clean: FRC
+clean:
        rm -f ${OBJS} core fpr
 
        rm -f ${OBJS} core fpr
 
-depend: FRC
+cleandir: clean
+       rm -f ${MAN} tags .depend
+
+depend: ${SRCS}
        mkdep -p ${CFLAGS} ${SRCS}
 
        mkdep -p ${CFLAGS} ${SRCS}
 
-install: FRC
+install: ${MAN}
        install -s -o bin -g bin -m 755 fpr ${DESTDIR}/usr/ucb/fpr
        install -s -o bin -g bin -m 755 fpr ${DESTDIR}/usr/ucb/fpr
+       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.
-
-fpr: fpr.c /usr/include/stdio.h
-
-# IF YOU PUT ANYTHING HERE IT WILL GO AWAY