aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2013-12-20 12:16:32 +0100
committerGravatar Christian Hesse <mail@eworm.de>2013-12-20 12:16:32 +0100
commit57ab891fcc6d08670c504e142a1089943b612930 (patch)
tree8604217db9008ba64a5fc26cafa0d4aca3c739fb
parente178db7e9714e84947b00379cf5c554909ea0b53 (diff)
downloadnullshell-57ab891fcc6d08670c504e142a1089943b612930.tar.gz
nullshell-57ab891fcc6d08670c504e142a1089943b612930.tar.zst
build and install documentation
-rw-r--r--.gitignore1
-rw-r--r--Makefile18
2 files changed, 17 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index 55457e0..a3543a2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
nullshell
+README.html
diff --git a/Makefile b/Makefile
index 1fb44e3..8071077 100644
--- a/Makefile
+++ b/Makefile
@@ -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