diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-10-16 15:50:37 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-10-16 15:50:37 +0300 |
commit | 998b28549c36a78582f1e2525bea14ad6fa7d33e (patch) | |
tree | 57c7404c617792dba562d71c154490fca02de189 /Makefile | |
parent | f099ecceb8b1ca40f990a2c28a8b8740ac0c8a8c (diff) | |
download | evol-hercules-998b28549c36a78582f1e2525bea14ad6fa7d33e.tar.gz evol-hercules-998b28549c36a78582f1e2525bea14ad6fa7d33e.tar.bz2 evol-hercules-998b28549c36a78582f1e2525bea14ad6fa7d33e.tar.xz evol-hercules-998b28549c36a78582f1e2525bea14ad6fa7d33e.zip |
Add simple make file in root directory for validate plugin.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..6b50fd9 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +.PHONY: validate default old gprof +.DEFAULT: default +.DEFAULT_GOAL = default + +validate: + cd ../tools/pluginvalidator && ./validate.py + +default: + ./build.sh + +old: + ./build.sh old + +gprof: + ./build.sh gprof |