blob: e50dfe937869bab037cee6de2d944aff74a2ba99 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# nullshell - do nothing but print asterisks, can be used for login shell
PREFIX := /usr
CP := cp
CC := gcc
MD := markdown
INSTALL := install
RM := rm
CFLAGS += -O2 -Wall -Werror
# this is just a fallback in case you do not use git but downloaded
# a release tarball...
VERSION := 0.0.2
all: nullshell README.html
nullshell: nullshell.c config.h version.h
$(CC) $(CFLAGS) $(LDFLAGS) nullshell.c -o nullshell
version.h: $(wildcard .git/HEAD .git/index .git/refs/tags/*) Makefile
echo "#ifndef VERSION" > $@
echo "#define VERSION \"$(shell git describe --tags --long 2>/dev/null || echo ${VERSION})\"" >> $@
echo "#endif" >> $@
config.h:
$(CP) config.def.h config.h
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 README.html nullshell version.h
|