BSD 4_3_Tahoe release
[unix-history] / usr / src / usr.bin / dc / Makefile
index cabfe0f..558a962 100644 (file)
@@ -1,47 +1,41 @@
 #
 #
-# Copyright (c) 1988 The Regents of the University of California.
-# All rights reserved.
+# Copyright (c) 1987 Regents of the University of California.
+# All rights reserved.  The Berkeley software License Agreement
+# specifies the terms and conditions for redistribution.
 #
 #
-# 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.7 (Berkeley) %G%
+#      @(#)Makefile    1.7     (Berkeley)      7/14/87
 #
 CFLAGS=        -O -I.
 LIBC=  /lib/libc.a
 SRCS=  dc.c
 OBJS=
 #
 CFLAGS=        -O -I.
 LIBC=  /lib/libc.a
 SRCS=  dc.c
 OBJS=
-MAN=   dc.0
 
 all: dc
 
 
 all: dc
 
-dc: ${LIBC}
-       ${CC} ${CFLAGS} -o $@ $@.c
+dc: dc.c ${LIBC}
+       ${CC} ${CFLAGS} dc.c -o $@
 
 
-clean:
+clean: FRC
        rm -f ${OBJS} core dc
 
        rm -f ${OBJS} core dc
 
-cleandir: clean
-       rm -f ${MAN} tags .depend
-
-depend: ${SRCS}
+depend: FRC
        mkdep -p ${CFLAGS} ${SRCS}
 
        mkdep -p ${CFLAGS} ${SRCS}
 
-install: ${MAN}
-       install -s -o bin -g bin -m 755 dc ${DESTDIR}/usr/bin
-       install -c -o bin -g bin -m 444 ${MAN} ${DESTDIR}/usr/man/cat1
+install: FRC
+       install -s -o bin -g bin -m 755 dc ${DESTDIR}/usr/bin/dc
 
 
-lint: ${SRCS}
+lint: FRC
        lint ${CFLAGS} ${SRCS}
 
        lint ${CFLAGS} ${SRCS}
 
-tags: ${SRCS}
+tags: FRC
        ctags ${SRCS}
        ctags ${SRCS}
+
+FRC:
+
+# DO NOT DELETE THIS LINE -- mkdep uses it.
+# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
+
+dc: dc.c /usr/include/stdio.h /usr/include/signal.h /usr/include/machine/trap.h
+dc: dc.h
+
+# IF YOU PUT ANYTHING HERE IT WILL GO AWAY