date and time created 88/12/22 13:04:38 by sam
[unix-history] / usr / src / usr.bin / tftp / Makefile
index 5102174..bdecb12 100644 (file)
@@ -1,24 +1,47 @@
-# Makefile %G%
-ALL=   tftp tftpd
-DESTDIR=
-CFLAGS=-O
+#
+# Copyright (c) 1987 Regents of the University of California.
+# All rights reserved.
+#
+# 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%
+#
+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
 
 
-.c.o:
-       ${CC} -S ${CFLAGS} $*.c
-       sed -f ../asm.sed $*.s | as -o $*.o
-       rm -f $*.s
+tftp: ${OBJS} ${LIBC}
+       ${CC} -o $@ ${CFLAGS} ${OBJS}
 
 
-tftp:  main.o tftp.o
-       ${CC} main.o tftp.o -o tftp -ljobs
+clean:
+       rm -f ${OBJS} core tftp
 
 
-tftpd: tftpd.o
-       ${CC} tftpd.o -o tftpd -ljobs
+cleandir: clean
+       rm -f ${MAN} tags .depend
 
 
-clean:
-       rm -f ${ALL} *.o *.s errs core a.out t.?
+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
+
+lint: ${SRCS}
+       lint ${CFLAGS} ${SRCS}
 
 
-install: tftp tftpd
-       install -s tftp ${DESTDIR}/usr/ucb
-       install -s tftpd ${DESTDIR}/etc
+tags: ${SRCS}
+       ctags ${SRCS}