summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 13ff2fe3399be6c45bb00fcffda4dcdb923609eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
CFLAGS=-Wall -Wextra
LDFLAGS=-lpam -lutempter -ldl

all: autologin

clean:
	$(RM) autologin

install: $(DESTDIR)/sbin/autologin $(DESTDIR)/usr/man/man8/autologin.8.gz

$(DESTDIR)/sbin/autologin: autologin
	install -m 711 $^ $@

$(DESTDIR)/usr/man/man8/autologin.8.gz: autologin.8
	cat autologin.8 | gzip > $(DESTDIR)/usr/man/man8/autologin.8.gz