aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2020-05-18 07:46:07 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2020-05-18 07:46:07 -0400
commitee438105335fde5754e544c2de193f6d35c0940e (patch)
tree2d7c8be3247c5211e8889b33533ff2d51f1d2375 /Makefile.in
parentfixing some of the tests (diff)
downloadfirejail-ee438105335fde5754e544c2de193f6d35c0940e.tar.gz
firejail-ee438105335fde5754e544c2de193f6d35c0940e.tar.zst
firejail-ee438105335fde5754e544c2de193f6d35c0940e.zip
fix make depencies
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index e811758e6..575c5d614 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -28,13 +28,13 @@ SECCOMP_FILTERS = seccomp seccomp.debug seccomp.32 seccomp.block_secondary secco
28endif 28endif
29ALL_ITEMS = $(APPS) $(SBOX_APPS) $(MYLIBS) 29ALL_ITEMS = $(APPS) $(SBOX_APPS) $(MYLIBS)
30 30
31.PHONY: all_items man filters 31.PHONY: all_items $(ALL_ITEMS)
32all_items: $(ALL_ITEMS) 32all_items: $(ALL_ITEMS)
33$(ALL_ITEMS): $(MYDIRS) 33$(ALL_ITEMS): $(MYDIRS)
34 $(MAKE) -C $(dir $@) 34 $(MAKE) -C $(dir $@)
35 35
36.PHONY: mydirs 36.PHONY: mydirs
37mydirs: $(MYDIRS) 37mydirs: mydirs $(MYDIRS)
38$(MYDIRS): 38$(MYDIRS):
39 $(MAKE) -C $@ 39 $(MAKE) -C $@
40 40