File: Makefile

package info (click to toggle)
timeoutd 1.5-10
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 128 kB
  • ctags: 100
  • sloc: ansic: 1,376; makefile: 39; sh: 35
file content (11 lines) | stat: -rw-r--r-- 430 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
CFLAGS=-fomit-frame-pointer -O2 -s -g -Wall
timeoutd:	timeoutd.c Makefile
	#$(CC) $(CFLAGS) -o timeoutd timeoutd.c
	$(CC) $(CFLAGS) -o timeoutd.o -c timeoutd.c -DTIMEOUTDX11
	$(CC) $(CFLAGS) -o timeoutd -L/usr/X11R6/lib timeoutd.o -lXss -lXext
	

install:
	install -o root -g system -m 2111 timeoutd /usr/etc/timeoutd
	install -o man -g info -m 444 timeoutd.8 /usr/man/man8
	install -o man -g info -m 444 timeouts.5 /usr/man/man5