add man page, cleanup
[unix-history] / usr / src / usr.bin / fsplit / Makefile
index 613ddb2..7757f32 100644 (file)
@@ -1,41 +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=  fsplit.c
 #
 CFLAGS=        -O
 LIBC=  /lib/libc.a
 SRCS=  fsplit.c
-OBJS=  fsplit.o
+OBJS=
+MAN=   fsplit.0
 
 all: fsplit
 
 
 all: fsplit
 
-fsplit:        ${SRCS} ${LIBC}
+fsplit: ${SRCS} ${LIBC}
        ${CC} -o $@ ${CFLAGS} ${SRCS
 
        ${CC} -o $@ ${CFLAGS} ${SRCS
 
-clean: FRC
+clean:
        rm -f ${OBJS} core fsplit
 
        rm -f ${OBJS} core fsplit
 
-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 fsplit ${DESTDIR}/usr/ucb/fsplit
        install -s -o bin -g bin -m 755 fsplit ${DESTDIR}/usr/ucb/fsplit
+       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.
-
-fsplit: fsplit.c /usr/include/ctype.h /usr/include/stdio.h
-fsplit: /usr/include/sys/types.h /usr/include/sys/stat.h
-
-# IF YOU PUT ANYTHING HERE IT WILL GO AWAY