File: Makefile

package info (click to toggle)
poppassd 1.8.5-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 72 kB
  • ctags: 27
  • sloc: ansic: 191; makefile: 55; sh: 6
file content (16 lines) | stat: -rw-r--r-- 309 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Added for Debian GNU/Linux
DESTDIR =

BINDIR = $(DESTDIR)/usr/sbin
CFLAGS = -O2
CC=gcc

poppassd: poppassd.c Makefile
	$(CC) $(CFLAGS) poppassd.c -o poppassd -lpam -ldl

install: poppassd
	install -d $(BINDIR)
	install -m755 poppassd $(BINDIR)

clean:
	rm -f *.o *~* core Makefile.new Makefile.bak poppassd