diff options
author | Yannick LE COLLEN <yannick@matrix.org> | 2017-03-02 13:01:32 +0100 |
---|---|---|
committer | Richard van der Hoff <github@rvanderhoff.org.uk> | 2017-03-02 12:01:32 +0000 |
commit | a9aeb6b5d743cc203f8e76c1a180d0cd8d433ed8 (patch) | |
tree | e877b6aa847280c35dc09d1ac44eab7f0c3eaf24 /Makefile | |
parent | 77eaaa3d5f60b83a618ee2034e2934bd6889339d (diff) |
Android : improve the version number management (#46)
Add functions to make the difference between the native and the java code version.
Factor out the version management in the makefiles.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1,8 +1,6 @@ #!/usr/bin/make -f -MAJOR := 2 -MINOR := 2 -PATCH := 2 +include common.mk VERSION := $(MAJOR).$(MINOR).$(PATCH) PREFIX ?= /usr/local BUILD_DIR := build |