aboutsummaryrefslogtreecommitdiffstats
path: root/src/zsh_completion/Makefile
blob: cc811ae9989570a6b09ab9073783950fbab1513d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.SUFFIXES:
ROOT = ../..
-include $(ROOT)/config.mk

.PHONY: all
all: _firejail

_firejail: _firejail.in $(ROOT)/config.mk
	gawk -f ../man/preproc.awk -- $(MANFLAGS) < $< > $@.tmp
	sed "s|_SYSCONFDIR_|$(sysconfdir)|" < $@.tmp > $@
	rm $@.tmp

.PHONY: clean
clean:
	rm -fr _firejail

.PHONY: distclean
distclean: clean