xref: /original-bsd/usr.bin/netstat/Makefile (revision 62734ea8)
1# @(#)Makefile	4.3 10/21/82
2OBJS=	host.o inet.o if.o main.o mbuf.o route.o
3CFLAGS=-O
4DESTDIR=
5
6.c.o:
7	${CC} -S ${CFLAGS} $*.c
8	sed -f ../asm.sed $*.s | ${AS} -o $*.o
9	rm -f $*.s
10
11netstat: ${OBJS}
12	${CC} ${OBJS} -o netstat
13
14install: netstat
15	install -s netstat ${DESTDIR}/usr/ucb
16
17clean:
18	rm -f *.o core a.out errs
19