File: Makefile

package info (click to toggle)
poppassd 1.8.5-8
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 132 kB
  • sloc: ansic: 382; makefile: 24; sh: 8
file content (16 lines) | stat: -rw-r--r-- 309 bytes parent folder | download | duplicates (8)
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