summaryrefslogtreecommitdiff
path: root/src/navigation/script/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/navigation/script/Makefile')
-rw-r--r--src/navigation/script/Makefile11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/navigation/script/Makefile b/src/navigation/script/Makefile
index 24b138e..13e7fa7 100644
--- a/src/navigation/script/Makefile
+++ b/src/navigation/script/Makefile
@@ -8,6 +8,7 @@
# \brief This file is part of the Build System.
#
# \author Martin Schaller <martin.schaller@it-schaller.de>
+# \author Philippe Colliot <philippe.colliot@mpsa.com>
#
# \version 1.0
#
@@ -20,7 +21,7 @@
#
# List of changes:
#
-# <date>, <name>, <description of change>
+# 4/6/2014, Philippe Colliot, complete src-clean option
#
# @licence end@
SRC_DIR=$(CURDIR)/../../navigation
@@ -38,12 +39,16 @@ help::
@echo "The following targets exist"
@echo "all: Build $(ALL)"
@echo "all2: Install all necessary dependencies and build all"
+ @echo "clean: Clean up build dir"
+ @echo "src-clean: Clean up all checked out sources"
include *.mk
all: $(ALL)
+src-clean: $(SRC_CLEAN)
+
deps::
sudo apt-get install $(DEPS)
# See https://bugs.launchpad.net/ubuntu/+source/freetype/+bug/1319642 why this is necessary
@@ -51,4 +56,8 @@ deps::
all2: deps all
+
navit-plugins: all
+
+clean:
+ rm -rf $(BIN_DIR)