Bell 32V development
[unix-history] / usr / src / cmd / xsend / makefile
CommitLineData
3672f0f5
TL
1CFLAGS = -O -d2
2
3all: enroll xsend xget
4
5enroll: enroll.o lib.o
6 cc enroll.o lib.o -lmp -o enroll
7xget: xget.o lib.o
8 cc xget.o lib.o -lmp -o xget
9xsend: xsend.o lib.o
10 cc xsend.o lib.o -lmp -o xsend
11enroll.o xget.o xsend.o lib.o: xmail.h
12
13list:
14 @pr -2 -w124 m.h xmail.h enroll.c xsend.c xget.c lib.c makefile
15
16install: enroll xsend xget
17 install -s enroll $(DESTDIR)/usr/bin
18 install -s xsend $(DESTDIR)/usr/bin
19 install -s xget $(DESTDIR)/usr/bin
20
21clean:
22 rm -f *.o