aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2016-09-19 09:09:09 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2016-09-19 09:09:09 -0400
commit528e3a6916e753f34d63d13234dc9f3d3a1a3ebb (patch)
tree50e8db575e588733655e329bcc046a6d75c461b3 /Makefile.in
parentbug: preserve config.status during make dist (diff)
downloadfirejail-528e3a6916e753f34d63d13234dc9f3d3a1a3ebb.tar.gz
firejail-528e3a6916e753f34d63d13234dc9f3d3a1a3ebb.tar.zst
firejail-528e3a6916e753f34d63d13234dc9f3d3a1a3ebb.zip
moved uids.h processing from configure to Makefile.in
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index aa008b7dd..ee17ae60c 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -18,14 +18,16 @@ DOCDIR=@docdir@
18HAVE_APPARMOR=@HAVE_APPARMOR@ 18HAVE_APPARMOR=@HAVE_APPARMOR@
19BUSYBOX_WORKAROUND=@BUSYBOX_WORKAROUND@ 19BUSYBOX_WORKAROUND=@BUSYBOX_WORKAROUND@
20 20
21uids.h:; ./mkuid.sh
22
21.PHONY: mylibs $(MYLIBS) 23.PHONY: mylibs $(MYLIBS)
22mylibs: $(MYLIBS) 24mylibs: $(MYLIBS) uids.h
23$(MYLIBS): 25$(MYLIBS):
24 $(MAKE) -C $@ 26 $(MAKE) -C $@
25 27
26.PHONY: apps $(APPS) 28.PHONY: apps $(APPS)
27apps: $(APPS) 29apps: $(APPS)
28$(APPS): $(MYLIBS) 30$(APPS): $(MYLIBS) uids.h
29 $(MAKE) -C $@ 31 $(MAKE) -C $@
30 32
31$(MANPAGES): $(wildcard src/man/*.txt) 33$(MANPAGES): $(wildcard src/man/*.txt)