File: Makefile

package info (click to toggle)
chrootuid 1.3-5
  • links: PTS
  • area: main
  • in suites: lenny, squeeze
  • size: 72 kB
  • ctags: 6
  • sloc: ansic: 102; makefile: 58
file content (23 lines) | stat: -rw-r--r-- 405 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# @(#) Makefile 1.2 93/08/12 16:09:29

FILES	= README Makefile chrootuid.c chrootuid.1
CFLAGS	= -O2
PREFIX  = /usr/local

all:	chrootuid chrootuid.1

chrootuid: chrootuid.c
	$(CC) $(CFLAGS) -o $@ $?

#chrootuid.1: chrootuid.c
#	srctoman $? >$@

shar:	$(FILES)
	@shar $(FILES)

install: chrootuid.1 chrootuid
	cp chrootuid $(PREFIX)/bin
	cp chrootuid.1 $(PREFIX)/man/man1

clean:
	rm -f *.o core chrootuid