diff options
author | Christian Hesse <mail@eworm.de> | 2013-12-20 12:16:32 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2013-12-20 12:16:32 +0100 |
commit | 57ab891fcc6d08670c504e142a1089943b612930 (patch) | |
tree | 8604217db9008ba64a5fc26cafa0d4aca3c739fb /Makefile | |
parent | e178db7e9714e84947b00379cf5c554909ea0b53 (diff) | |
download | nullshell-57ab891fcc6d08670c504e142a1089943b612930.tar.gz nullshell-57ab891fcc6d08670c504e142a1089943b612930.tar.zst |
build and install documentation
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 18 |
1 files changed, 16 insertions, 2 deletions
@@ -1,14 +1,28 @@ +# nullshell - do nothing but print asterisks, can be used for login shell + PREFIX := /usr CC := gcc +MD := markdown INSTALL := install RM := rm CFLAGS += -O2 -Wall -Werror +all: nullshell README.html + nullshell: nullshell.c $(CC) $(CFLAGS) $(LDFLAGS) nullshell.c -o nullshell -install: nullshell +README.html: README.md + $(MD) README.md > README.html + +install: install-bin install-doc + +install-bin: nullshell $(INSTALL) -D -m0755 nullshell $(DESTDIR)$(PREFIX)/bin/nullshell +install-doc: README.html + $(INSTALL) -D -m0755 README.md $(DESTDIR)$(PREFIX)/share/doc/nullshell/README.md + $(INSTALL) -D -m0755 README.html $(DESTDIR)$(PREFIX)/share/doc/nullshell/README.html + clean: - $(RM) -f nullshell + $(RM) -f README.html nullshell |