blob: edf3a15bc9934dccf22438a66c9c22bc0942ef86 (
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
48
49
50
51
52
|
# nullshell - do nothing but print asterisks, can be used for login shell
PREFIX := /usr
# commands
CC := gcc
CP := cp
INSTALL := install
MD := markdown
RM := rm
# flags
CFLAGS += -std=c11 -O2 -fPIC -Wall -Werror
LDFLAGS += -Wl,-z,now -Wl,-z,relro -pie
# this is just a fallback in case you do not use git but downloaded
# a release tarball...
VERSION := 0.0.6
all: nullshell README.html
nullshell: nullshell.c config.h version.h
$(CC) $(CFLAGS) $(LDFLAGS) -o nullshell nullshell.c
version.h: $(wildcard .git/HEAD .git/index .git/refs/tags/*) Makefile
printf "#ifndef VERSION\n#define VERSION \"%s\"\n#endif\n" $(shell git describe --long 2>/dev/null || echo ${VERSION}) > $@
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 --armor --detach-sign --comment nullshell-$(VERSION).tar.xz nullshell-$(VERSION).tar.xz
git notes --ref=refs/notes/signatures/tar add -C $$(git archive --format=tar --prefix=nullshell-$(VERSION)/ $(VERSION) | gpg --armor --detach-sign --comment nullshell-$(VERSION).tar | git hash-object -w --stdin) $(VERSION)
|