add man page, cleanup
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Wed, 26 Oct 1988 10:20:51 +0000 (02:20 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Wed, 26 Oct 1988 10:20:51 +0000 (02:20 -0800)
SCCS-vsn: usr.bin/f77/Makefile 5.5
SCCS-vsn: usr.bin/fpr/Makefile 5.2
SCCS-vsn: usr.bin/fsplit/Makefile 5.2

usr/src/usr.bin/f77/Makefile
usr/src/usr.bin/fpr/Makefile
usr/src/usr.bin/fsplit/Makefile

index c92d82b..d7fda1a 100644 (file)
@@ -1,24 +1,36 @@
 #
 #
-# 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.3 (Berkeley) 6/18/87
+# 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.5 (Berkeley) %G%
+#
+MAN=   f77.0
 SUBDIR=        f77.${MACHINE}/f77 f77.${MACHINE}/f77pass1 fpr fsplit
 
 SUBDIR=        f77.${MACHINE}/f77 f77.${MACHINE}/f77pass1 fpr fsplit
 
-all: FRC
-       for i in ${SUBDIR}; do (cd $$i; make ${MFLAGS}); done
-
-install: FRC
-       for i in ${SUBDIR}; do \
-               (cd $$i; make ${MFLAGS} DESTDIR=${DESTDIR} install); \
-       done
+all f77 clean lint tags: FRC
+       for i in ${SUBDIR}; \
+               do (cd $$i; make ${MFLAGS} DESTDIR=${DESTDIR} $@); done
 
 
-clean: FRC
-       for i in ${SUBDIR}; do (cd $$i; make ${MFLAGS} clean); done
+cleandir: clean
+       for i in ${SUBDIR}; \
+               do (cd $$i; make ${MFLAGS} DESTDIR=${DESTDIR} $@); done
+       rm -f ${MAN} tags .depend
 
 
-depend: FRC
-       for i in ${SUBDIR}; do (cd $$i; make ${MFLAGS} depend); done
+install: ${MAN}
+       for i in ${SUBDIR}; do \
+               (cd $$i; make ${MFLAGS} DESTDIR=${DESTDIR} $@); done
+       install -c -o bin -g bin -m 444 ${MAN} ${DESTDIR}/usr/man/cat1
 
 FRC:
 
 FRC:
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
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