1# @(#) Makefile 1.2 93/08/12 16:09:29
2
3FILES	= README Makefile chrootuid.c chrootuid.1
4CFLAGS	?= -O
5
6all:	chrootuid chrootuid.1
7
8chrootuid: chrootuid.c
9	$(CC) $(CFLAGS) -o $@ $?
10
11#chrootuid.1: chrootuid.c
12#	srctoman $? >$@
13
14shar:	$(FILES)
15	@shar $(FILES)
16
17install: chrootuid.1 chrootuid
18	cp chrootuid /usr/local/bin
19	cp chrootuid.1 /usr/local/man/man1
20
21clean:
22	rm -f *.o core chrootuid
23