aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-05-10 16:26:15 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-06-12 16:08:47 -0300
commit95bfe7d71b12aa415091d15bb6084dfe7bb993f0 (patch)
tree2f6c44cb83afe0b9c32a76f22f404e80c7090269 /Makefile.in
parentmakefiles: include config.mk instead of common.mk where possible (diff)
downloadfirejail-95bfe7d71b12aa415091d15bb6084dfe7bb993f0.tar.gz
firejail-95bfe7d71b12aa415091d15bb6084dfe7bb993f0.tar.zst
firejail-95bfe7d71b12aa415091d15bb6084dfe7bb993f0.zip
mkdeb.sh.in: move configure-time vars into new config.sh.in
For better organization and so that they can be used by other shell scripts by just sourcing config.sh.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 42ef2070f..4d9983672 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -85,7 +85,7 @@ distclean: clean
85 $(MAKE) -C $$dir distclean; \ 85 $(MAKE) -C $$dir distclean; \
86 done 86 done
87 $(MAKE) -C test distclean 87 $(MAKE) -C test distclean
88 rm -fr Makefile autom4te.cache config.log config.mk config.status src/common.mk mkdeb.sh 88 rm -fr Makefile autom4te.cache config.log config.mk config.sh config.status src/common.mk mkdeb.sh
89 89
90realinstall: 90realinstall:
91 # firejail executable 91 # firejail executable
@@ -193,6 +193,7 @@ Makefile.in \
193README \ 193README \
194RELNOTES \ 194RELNOTES \
195config.mk.in \ 195config.mk.in \
196config.sh.in \
196configure \ 197configure \
197configure.ac \ 198configure.ac \
198contrib \ 199contrib \
@@ -208,11 +209,13 @@ src
208DISTFILES_TEST = test/Makefile.in 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 209DISTFILES_TEST = test/Makefile.in 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
209 210
210dist: 211dist:
212 mv config.sh config.sh.old
211 mv config.status config.status.old 213 mv config.status config.status.old
212 mv mkdeb.sh mkdeb.sh.old 214 mv mkdeb.sh mkdeb.sh.old
213 make distclean 215 make distclean
214 mv mkdeb.sh.old mkdeb.sh 216 mv mkdeb.sh.old mkdeb.sh
215 mv config.status.old config.status 217 mv config.status.old config.status
218 mv config.sh.old config.sh
216 rm -fr $(NAME)-$(VERSION) $(NAME)-$(VERSION).tar.xz 219 rm -fr $(NAME)-$(VERSION) $(NAME)-$(VERSION).tar.xz
217 mkdir -p $(NAME)-$(VERSION)/test 220 mkdir -p $(NAME)-$(VERSION)/test
218 cp -a $(DISTFILES) $(NAME)-$(VERSION) 221 cp -a $(DISTFILES) $(NAME)-$(VERSION)