xref: /original-bsd/old/tp/Makefile (revision f82e54c4)
1#	@(#)Makefile	4.1	12/18/82
2
3CFLAGS=-O
4h = tp.h tp_defs.h
5o  = tp0.o tp1.o tp2.o tp3.o
6
7tp :	$o
8	$(CC) -o tp $o
9
10$o :	$h
11
12install : tp
13	install -s tp ${DESTDIR}/bin
14
15clean :
16	rm -f *.o
17