aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2016-04-19 15:57:18 +0200
committerMarc André Tanner <mat@brain-dump.org>2016-04-19 16:03:24 +0200
commitd49438659d920718fa2fe7f9ce2c5665a62c9d58 (patch)
tree3842993a1f969bf4a9ad09e4b49c2c365813d17b /Makefile
parentb2ec2cdff86a022f1eb0e267fe36e807b2446d2b (diff)
downloadvis-d49438659d920718fa2fe7f9ce2c5665a62c9d58.tar.gz
vis-d49438659d920718fa2fe7f9ce2c5665a62c9d58.tar.xz
Integrate vis-test git submodule
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 9 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index adf7fbc..86771a5 100644
--- a/Makefile
+++ b/Makefile
@@ -54,6 +54,14 @@ debug: clean
profile: clean
@$(MAKE) CFLAGS_VIS='${DEBUG_CFLAGS_VIS} -pg'
+test-update:
+ git submodule init
+ git submodule update --remote --rebase
+
+test:
+ [ -d test ] || $(MAKE) test-update
+ @$(MAKE) -C test
+
clean:
@echo cleaning
@rm -f vis vis-${VERSION}.tar.gz
@@ -91,4 +99,4 @@ uninstall:
@echo removing support files from ${DESTDIR}${SHAREPREFIX}/vis
@rm -rf ${DESTDIR}${SHAREPREFIX}/vis
-.PHONY: all clean dist install uninstall debug profile
+.PHONY: all clean dist install uninstall debug profile test test-update