]> rtime.felk.cvut.cz Git - novaboot.git/blob - Makefile
Do not make README.txt executable
[novaboot.git] / Makefile
1 DESTDIR=
2 PREFIX=/usr
3
4 all:
5
6 README.md: novaboot
7         pod2markdown $< > $@
8
9 install:
10         install -d $(DESTDIR)$(PREFIX)/bin
11         install -m 755 novaboot $(DESTDIR)$(PREFIX)/bin
12         install -d $(DESTDIR)$(PREFIX)/share/man/man1/
13         pod2man novaboot $(DESTDIR)$(PREFIX)/share/man/man1/novaboot.1
14         install -d $(DESTDIR)/etc/sudoers.d
15         install -m 440 sudoers.novaboot $(DESTDIR)/etc/sudoers.d/novaboot
16         install -d $(DESTDIR)/etc/novaboot.d
17         install -m 644 etc.novaboot.txt $(DESTDIR)/etc/novaboot.d/README.txt
18
19 test:
20         $(MAKE) -C tests