diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2017-06-13 16:40:05 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2017-06-13 18:21:13 +0200 |
commit | 5d0321291f4df297b0d9f9837099a36cdf1c83b6 (patch) | |
tree | d90894454931f927bcc13382d3d47db9856c1d4b /src/Makefile | |
parent | eb4f5ac4e7fedae6061a9615d41dd6c2c8779c92 (diff) | |
download | VeraCrypt-5d0321291f4df297b0d9f9837099a36cdf1c83b6.tar.gz VeraCrypt-5d0321291f4df297b0d9f9837099a36cdf1c83b6.zip |
Linux/MacOSX: Modify Makefile to separate between build and packaging. Add install target for local installation.
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index 3b6c0867..c1c4f02f 100644 --- a/src/Makefile +++ b/src/Makefile @@ -362,6 +362,11 @@ all clean: export LIBS="$(BASE_DIR)/$$DIR/$$PROJ.a $$LIBS"; \ done +install: + $(MAKE) -C Main -f Main.make NAME=Main install + +package: + $(MAKE) -C Main -f Main.make NAME=Main package #------ wxWidgets build ------ |