xref: /original-bsd/libexec/ftpd/Makefile (revision 74bf68f5)
1#
2# Copyright (c) 1983 Regents of the University of California.
3# All rights reserved.  The Berkeley software License Agreement
4# specifies the terms and conditions for redistribution.
5#
6#	@(#)Makefile	5.2 (Berkeley) 02/03/86
7#
8ALL=	ftpd.o ftpcmd.o glob.o vers.o
9DESTDIR=
10CFLAGS=	-O
11
12ftpd:	${ALL}
13	${CC} -o ftpd ${ALL}
14
15vers.o:	ftpd.c ftpcmd.y
16	sh newvers.sh
17	${CC} -c vers.c
18
19install:
20	install -s ftpd ${DESTDIR}/etc/ftpd
21
22clean:
23	rm -f ftpd *.o *.s errs core a.out t.? yacc.* y.tab.c
24