date and time created 88/12/22 13:04:38 by sam
[unix-history] / usr / src / usr.bin / tftp / Makefile
index 6212768..bdecb12 100644 (file)
@@ -1,23 +1,47 @@
 #
 #
-# Copyright (c) 1983 Regents of the University of California.
-# All rights reserved.  The Berkeley software License Agreement
-# specifies the terms and conditions for redistribution.
+# Copyright (c) 1987 Regents of the University of California.
+# All rights reserved.
 #
 #
-#      @(#)Makefile    5.3 (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.
 #
 #
-ALL=   tftp
-DESTDIR=
-CFLAGS=-O
+#      @(#)Makefile    5.7 (Berkeley) %G%
+#
+CFLAGS=        -O
+LIBC=  /lib/libc.a
+SRCS=  main.c tftp.c tftpsubs.c
+OBJS=  main.o tftp.o tftpsubs.o
+MAN=   tftp.0
 
 
-all: ${ALL}
+all: tftp
 
 
-tftp:  main.o tftp.o tftpsubs.o
-       ${CC} main.o tftp.o tftpsubs.o -o tftp
+tftp: ${OBJS} ${LIBC}
+       ${CC} -o $@ ${CFLAGS} ${OBJS}
 
 clean:
 
 clean:
-       rm -f ${ALL} *.o *.s errs core a.out t.?
+       rm -f ${OBJS} core tftp
+
+cleandir: clean
+       rm -f ${MAN} tags .depend
+
+depend: ${SRCS}
+       mkdep ${CFLAGS} ${SRCS}
+
+install: ${MAN}
+       install -s -o bin -g bin -m 755 tftp ${DESTDIR}/usr/ucb/tftp
+       install -c -o bin -g bin -m 444 tftp.0 ${DESTDIR}/usr/man/cat1
 
 
-depend:
+lint: ${SRCS}
+       lint ${CFLAGS} ${SRCS}
 
 
-install: 
-       install -s tftp ${DESTDIR}/usr/ucb
+tags: ${SRCS}
+       ctags ${SRCS}