File: Makefile

package info (click to toggle)
poppassd 1.8.5-4.1
  • links: PTS
  • area: main
  • in suites: buster, stretch
  • size: 76 kB
  • ctags: 26
  • sloc: ansic: 191; makefile: 56; sh: 8
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