blob: 2e4d3beee637aee28f17a3a1e1f56af89099e8d6 (
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
41
42
43
44
45
46
47
|
# 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.3
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
distclean:
$(RM) -f README.html nullshell version.h config.h
release:
git archive --format=tar.xz --prefix=nullshell-$(VERSION)/ $(VERSION) > nullshell-$(VERSION).tar.xz
gpg -ab nullshell-$(VERSION).tar.xz
|