summaryrefslogtreecommitdiff
path: root/pinyweb/Makefile
blob: 4c0055db2160e8e3b4301fda173b7121fff97fb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
build:
	$(MAKE) -C suid

install:
	install -o root -g root -m 755 -d $(DESTDIR)/usr/lib/cgi-bin/piny $(DESTDIR)/usr/sbin
	install -o root -g root -m 755 cgi-bin/newuser.cgi $(DESTDIR)/usr/lib/cgi-bin/piny
	install -o root -g root -m 755 cgi-bin/auth/* $(DESTDIR)/usr/lib/cgi-bin/piny/auth
	install -o root -g shadow -m 4754 suid/piny-suid $(DESTDIR)/usr/sbin # FIXME: this should really be www-data somehow

clean:
	$(MAKE) -C suid clean