date and time created 83/02/11 15:44:35 by rrh
[unix-history] / usr / src / usr.bin / tftp / Makefile
CommitLineData
3f38d406
SL
1# Makefile %G%
2ALL= tftp tftpd
7e65e916 3DESTDIR=
3f38d406
SL
4CFLAGS=-O
5
6all: ${ALL}
7
3f38d406
SL
8tftp: main.o tftp.o
9 ${CC} main.o tftp.o -o tftp -ljobs
10
11tftpd: tftpd.o
12 ${CC} tftpd.o -o tftpd -ljobs
13
14clean:
15 rm -f ${ALL} *.o *.s errs core a.out t.?
16
17install: tftp tftpd
7e65e916
SL
18 install -s tftp ${DESTDIR}/usr/ucb
19 install -s tftpd ${DESTDIR}/etc