Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-02-14 09:15:23 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-02-14 09:15:23 +0300
commit44be05f7f969c0428a620d04a016072146e6c36e (patch)
treea279ed4a1c86b20edefe95dc3dc01c686bfe0e87 /GNUmakefile
parent665a0ff7894b01f9a29efe02c059c632cade9814 (diff)
convenience targets for makefile
clean, test, package_debian, package_pacman
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 2abb6846e95..703b8355a5e 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -71,4 +71,18 @@ all:
@echo run blender from "$(BUILD_DIR)/bin/blender"
@echo
+# package types
+package_debian:
+ cd build_files/package_spec ; sh ./build_debian.sh
+
+package_pacman:
+ cd build_files/package_spec/pacman ; makepkg --asroot
+
+# forward build targets
+test:
+ cd $(BUILD_DIR) ; ctest . --output-on-failure
+
+clean:
+ cd $(BUILD_DIR) ; make clean
+
.PHONY: all