xref: /original-bsd/usr.bin/netstat/Makefile (revision 7d595439)
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.5 (Berkeley) 01/18/86
7#
8OBJS=	host.o inet.o if.o main.o mbuf.o route.o unix.o ns.o
9CFLAGS=-O
10DESTDIR=
11
12netstat: ${OBJS}
13	${CC} ${OBJS} -o netstat
14
15install: netstat
16	install -s -m 2755 -g kmem netstat ${DESTDIR}/usr/ucb/netstat
17
18clean:
19	rm -f *.o core a.out errs netstat
20