temp files should be protected; bug report 4.3BSD/usr.bin/186
[unix-history] / usr / src / usr.bin / gprof / Makefile
index a88aaa7..d638c57 100644 (file)
@@ -3,13 +3,18 @@
 # All rights reserved.
 #
 # Redistribution and use in source and binary forms are permitted
 # All rights reserved.
 #
 # Redistribution and use in source and binary forms are permitted
-# provided that this notice is preserved and that due credit is given
-# to the University of California at Berkeley. The name of the University
-# may not be used to endorse or promote products derived from this
-# software without specific written prior permission. This software
-# is provided ``as is'' without express or implied warranty.
+# 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.11 (Berkeley) %G%
+#      @(#)Makefile    5.13 (Berkeley) %G%
 #
 CFLAGS=        -O
 LIBC=  /lib/libc.a
 #
 CFLAGS=        -O
 LIBC=  /lib/libc.a
@@ -18,6 +23,7 @@ SRCS= gprof.c arcs.c dfn.c lookup.c ${MACHINE}.c hertz.c \
        printgprof.c printlist.c
 OBJS=  gprof.o arcs.o dfn.o lookup.o ${MACHINE}.o hertz.o \
        printgprof.o printlist.o
        printgprof.c printlist.c
 OBJS=  gprof.o arcs.o dfn.o lookup.o ${MACHINE}.o hertz.o \
        printgprof.o printlist.o
+MAN=   gprof.0
 
 all: gprof
 
 
 all: gprof
 
@@ -33,49 +39,23 @@ gcrt0.h: FRC
                cp ../../lib/libc/${MACHINE}/csu/gmon.h gcrt0.h; \
        fi
 
                cp ../../lib/libc/${MACHINE}/csu/gmon.h gcrt0.h; \
        fi
 
-clean: FRC
+clean:
        rm -f ${OBJS} core gprof
 
        rm -f ${OBJS} core gprof
 
-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 gprof ${DESTDIR}/usr/ucb/gprof
        install -c -o bin -g bin -m 444 gprof.flat ${DESTDIR}/usr/lib
        install -c -o bin -g bin -m 444 gprof.callg ${DESTDIR}/usr/lib
        install -s -o bin -g bin -m 755 gprof ${DESTDIR}/usr/ucb/gprof
        install -c -o bin -g bin -m 444 gprof.flat ${DESTDIR}/usr/lib
        install -c -o bin -g bin -m 444 gprof.callg ${DESTDIR}/usr/lib
+       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.
-
-gprof.o: gprof.c gprof.h /usr/include/stdio.h /usr/include/sys/types.h
-gprof.o: /usr/include/sys/stat.h /usr/include/a.out.h /usr/include/sys/exec.h
-gprof.o: gcrt0.h tahoe.h
-arcs.o: arcs.c gprof.h /usr/include/stdio.h /usr/include/sys/types.h
-arcs.o: /usr/include/sys/stat.h /usr/include/a.out.h /usr/include/sys/exec.h
-arcs.o: gcrt0.h tahoe.h
-dfn.o: dfn.c /usr/include/stdio.h gprof.h /usr/include/stdio.h
-dfn.o: /usr/include/sys/types.h /usr/include/sys/stat.h /usr/include/a.out.h
-dfn.o: /usr/include/sys/exec.h gcrt0.h tahoe.h
-lookup.o: lookup.c gprof.h /usr/include/stdio.h /usr/include/sys/types.h
-lookup.o: /usr/include/sys/stat.h /usr/include/a.out.h /usr/include/sys/exec.h
-lookup.o: gcrt0.h tahoe.h
-tahoe.o: tahoe.c gprof.h /usr/include/stdio.h /usr/include/sys/types.h
-tahoe.o: /usr/include/sys/stat.h /usr/include/a.out.h /usr/include/sys/exec.h
-tahoe.o: gcrt0.h tahoe.h
-hertz.o: hertz.c /usr/include/sys/time.h /usr/include/time.h
-printgprof.o: printgprof.c gprof.h /usr/include/stdio.h
-printgprof.o: /usr/include/sys/types.h /usr/include/sys/stat.h
-printgprof.o: /usr/include/a.out.h /usr/include/sys/exec.h gcrt0.h tahoe.h
-printlist.o: printlist.c gprof.h /usr/include/stdio.h /usr/include/sys/types.h
-printlist.o: /usr/include/sys/stat.h /usr/include/a.out.h
-printlist.o: /usr/include/sys/exec.h gcrt0.h tahoe.h
-
-# IF YOU PUT ANYTHING HERE IT WILL GO AWAY