aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2016-11-16 11:10:32 -0500
committerLibravatar netblue30 <netblue30@yahoo.com>2016-11-16 11:10:32 -0500
commitedcd62d7523365165e23695d7daabc94f1e9f48d (patch)
tree25649c9b73acd260fbafa30ee66cd6f7ceae8f1c /Makefile.in
parentMerge pull request #912 from curiosity-seeker/master (diff)
downloadfirejail-edcd62d7523365165e23695d7daabc94f1e9f48d.tar.gz
firejail-edcd62d7523365165e23695d7daabc94f1e9f48d.tar.zst
firejail-edcd62d7523365165e23695d7daabc94f1e9f48d.zip
fcopy part 1
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in13
1 files changed, 9 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in
index 86fd4f4b7..6501989a9 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,6 +1,6 @@
1all: apps man 1all: apps man
2MYLIBS = src/lib 2MYLIBS = src/lib
3APPS = src/firejail src/firemon src/firecfg src/libtrace src/libtracelog src/ftee src/faudit src/libconnect src/fnet src/fseccomp 3APPS = src/firejail src/firemon src/firecfg src/libtrace src/libtracelog src/ftee src/faudit src/libconnect src/fnet src/fseccomp src/fcopy
4MANPAGES = firejail.1 firemon.1 firecfg.1 firejail-profile.5 firejail-login.5 4MANPAGES = firejail.1 firemon.1 firecfg.1 firejail-profile.5 firejail-login.5
5 5
6prefix=@prefix@ 6prefix=@prefix@
@@ -78,6 +78,7 @@ realinstall:
78 install -c -m 0755 src/faudit/faudit $(DESTDIR)/$(libdir)/firejail/. 78 install -c -m 0755 src/faudit/faudit $(DESTDIR)/$(libdir)/firejail/.
79 install -c -m 0755 src/fnet/fnet $(DESTDIR)/$(libdir)/firejail/. 79 install -c -m 0755 src/fnet/fnet $(DESTDIR)/$(libdir)/firejail/.
80 install -c -m 0755 src/fseccomp/fseccomp $(DESTDIR)/$(libdir)/firejail/. 80 install -c -m 0755 src/fseccomp/fseccomp $(DESTDIR)/$(libdir)/firejail/.
81 install -c -m 0755 src/fcopy/fcopy $(DESTDIR)/$(libdir)/firejail/.
81 # documents 82 # documents
82 install -m 0755 -d $(DESTDIR)/$(DOCDIR) 83 install -m 0755 -d $(DESTDIR)/$(DOCDIR)
83 install -c -m 0644 COPYING $(DESTDIR)/$(DOCDIR)/. 84 install -c -m 0644 COPYING $(DESTDIR)/$(DOCDIR)/.
@@ -128,6 +129,7 @@ install-strip: all
128 strip src/faudit/faudit 129 strip src/faudit/faudit
129 strip src/fnet/fnet 130 strip src/fnet/fnet
130 strip src/fseccomp/fseccomp 131 strip src/fseccomp/fseccomp
132 strip src/fcopy/fcopy
131 $(MAKE) realinstall 133 $(MAKE) realinstall
132 134
133uninstall: 135uninstall:
@@ -145,7 +147,7 @@ uninstall:
145 rm -f $(DESTDIR)/$(datarootdir)/bash-completion/completions/firecfg 147 rm -f $(DESTDIR)/$(datarootdir)/bash-completion/completions/firecfg
146 148
147DISTFILES = "src etc platform configure configure.ac Makefile.in install.sh mkman.sh mketc.sh mkdeb.sh mkuid.sh COPYING README RELNOTES" 149DISTFILES = "src etc platform configure configure.ac Makefile.in install.sh mkman.sh mketc.sh mkdeb.sh mkuid.sh COPYING README RELNOTES"
148DISTFILES_TEST = "test/rlimit test/apps test/apps-x11 test/apps-x11-xorg test/root test/environment test/profiles test/utils test/compile test/filters test/network test/arguments test/fs test/sysutils" 150DISTFILES_TEST = "test/rlimit test/apps test/apps-x11 test/apps-x11-xorg test/root test/fcopy test/environment test/profiles test/utils test/compile test/filters test/network test/arguments test/fs test/sysutils"
149 151
150dist: 152dist:
151 mv config.status config.status.old 153 mv config.status config.status.old
@@ -226,7 +228,10 @@ test-fs:
226test-rlimit: 228test-rlimit:
227 cd test/rlimit; ./rlimit.sh | grep TESTING 229 cd test/rlimit; ./rlimit.sh | grep TESTING
228 230
229test: test-profiles test-fs test-utils test-environment test-apps test-apps-x11 test-apps-x11-xorg test-filters test-arguments test-rlimit 231test-fcopy:
232 cd test/fcopy; ./fcopy.sh | grep TESTING
233
234test: test-profiles test-fcopy test-fs test-utils test-environment test-apps test-apps-x11 test-apps-x11-xorg test-filters test-arguments test-rlimit
230 echo "TEST COMPLETE" 235 echo "TEST COMPLETE"
231 236
232########################################## 237##########################################
@@ -254,6 +259,6 @@ test-overlay:
254 259
255# For testing hidepid system, the command to set it up is "mount -o remount,rw,hidepid=2 /proc" 260# For testing hidepid system, the command to set it up is "mount -o remount,rw,hidepid=2 /proc"
256 261
257test-all: test-root test-network test-appimage test-overlay test 262test-all: test-root test-network test-appimage test-overlay test-fcopy test
258 echo "TEST COMPLETE" 263 echo "TEST COMPLETE"
259 \ No newline at end of file 264 \ No newline at end of file