mirror of
https://github.com/netblue30/firejail.git
synced 2026-05-16 22:01:38 -06:00
build: mark most phony targets as such
To improve clarity and to prevent unnecessary filesystem lookups.
Overall, this appears to reduce the amount of implicit rule searches by
~4% for the default build and by ~12% for the "man" target (as an
example):
$ git checkout master >/dev/null 2>&1
$ git show --pretty='%h %ai %s' -s
b55cb6a80 2023-01-31 18:56:42 -0500 testing
$ ./configure >/dev/null
$ make clean >/dev/null && make --debug=i -j 4 | grep -F 'Trying implicit' | wc -l
7101
$ make clean >/dev/null && make --debug=i -j 4 man | grep -F 'Trying implicit' | wc -l
1239
# (with this commit applied)
$ make clean >/dev/null && make --debug=i -j 4 | grep -F 'Trying implicit' | wc -l
6793
$ make clean >/dev/null && make --debug=i -j 4 man | grep -F 'Trying implicit' | wc -l
1085
Environment: GNU make 4.4-1 on Artix Linux.
Note: The amount lines printed is the same on non-parallel builds (that
is, without `-j 4`).
See commit 2465f9248 ("makefiles: make all, clean and distclean PHONY",
2021-02-12) / PR #4024 for details.
Note: By "most phony targets" I mean all non-path targets except for the
testing targets, which were being changed recently (for example, the
"test-github" target) and so might still be under development.
This commit is contained in:
parent
b55cb6a80a
commit
f48886f254
1 changed files with 14 additions and 0 deletions
14
Makefile
14
Makefile
|
|
@ -58,6 +58,7 @@ mydirs: $(MYDIRS)
|
|||
$(MYDIRS):
|
||||
$(MAKE) -C $@
|
||||
|
||||
.PHONY: filters
|
||||
filters: $(SECCOMP_FILTERS) $(SBOX_APPS_NON_DUMPABLE)
|
||||
seccomp: src/fseccomp/fseccomp src/fsec-optimize/fsec-optimize
|
||||
src/fseccomp/fseccomp default seccomp
|
||||
|
|
@ -83,6 +84,7 @@ seccomp.mdwx.32: src/fseccomp/fseccomp
|
|||
$(MANPAGES): src/man config.mk
|
||||
./mkman.sh $(VERSION) src/man/$(basename $@).man $@
|
||||
|
||||
.PHONY: man
|
||||
man: $(MANPAGES)
|
||||
|
||||
# Makes all targets in contrib/
|
||||
|
|
@ -178,6 +180,7 @@ distclean: clean
|
|||
$(MAKE) -C test distclean
|
||||
rm -fr autom4te.cache config.log config.mk config.sh config.status
|
||||
|
||||
.PHONY: realinstall
|
||||
realinstall: config.mk
|
||||
# firejail executable
|
||||
install -m 0755 -d $(DESTDIR)$(bindir)
|
||||
|
|
@ -261,13 +264,16 @@ endif
|
|||
install -m 0755 -d $(DESTDIR)$(datarootdir)/zsh/site-functions
|
||||
install -m 0644 src/zsh_completion/_firejail $(DESTDIR)$(datarootdir)/zsh/site-functions/
|
||||
|
||||
.PHONY: install
|
||||
install: all
|
||||
$(MAKE) realinstall
|
||||
|
||||
.PHONY: install-strip
|
||||
install-strip: all
|
||||
strip $(ALL_ITEMS)
|
||||
$(MAKE) realinstall
|
||||
|
||||
.PHONY: uninstall
|
||||
uninstall: config.mk
|
||||
rm -f $(DESTDIR)$(bindir)/firejail
|
||||
rm -f $(DESTDIR)$(bindir)/firemon
|
||||
|
|
@ -309,6 +315,7 @@ src
|
|||
|
||||
DISTFILES_TEST = test/Makefile test/apps test/apps-x11 test/apps-x11-xorg test/root test/private-lib test/fnetfilter test/fcopy test/environment test/profiles test/utils test/compile test/filters test/network test/fs test/sysutils test/chroot
|
||||
|
||||
.PHONY: dist
|
||||
dist: config.mk
|
||||
mv config.sh config.sh.old
|
||||
mv config.status config.status.old
|
||||
|
|
@ -324,15 +331,19 @@ dist: config.mk
|
|||
tar -cJvf $(TARNAME)-$(VERSION).tar.xz $(TARNAME)-$(VERSION)
|
||||
rm -fr $(TARNAME)-$(VERSION)
|
||||
|
||||
.PHONY: asc
|
||||
asc: config.mk
|
||||
./mkasc.sh $(VERSION)
|
||||
|
||||
.PHONY: deb
|
||||
deb: dist config.sh
|
||||
./mkdeb.sh
|
||||
|
||||
.PHONY: deb-apparmor
|
||||
deb-apparmor: dist config.sh
|
||||
./mkdeb.sh -apparmor --enable-apparmor
|
||||
|
||||
.PHONY: test-compile
|
||||
test-compile: dist config.mk
|
||||
cd test/compile; ./compile.sh $(TARNAME)-$(VERSION)
|
||||
|
||||
|
|
@ -340,12 +351,15 @@ test-compile: dist config.mk
|
|||
rpms: src/man config.mk
|
||||
./platform/rpm/mkrpm.sh $(TARNAME) $(VERSION)
|
||||
|
||||
.PHONY: extras
|
||||
extras: all
|
||||
$(MAKE) -C extras/firetools
|
||||
|
||||
.PHONY: cppcheck
|
||||
cppcheck: clean
|
||||
cppcheck --force --error-exitcode=1 --enable=warning,performance .
|
||||
|
||||
.PHONY: scan-build
|
||||
scan-build: clean
|
||||
NO_EXTRA_CFLAGS="yes" scan-build make
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue