summaryrefslogtreecommitdiff
path: root/git/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'git/makefile')
-rw-r--r--git/makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/git/makefile b/git/makefile
index 3c2430a..28dbaf5 100644
--- a/git/makefile
+++ b/git/makefile
@@ -5,13 +5,13 @@
# make <db> - build tests and examples for <db>
# make <db>-test - build and run tests and examples for <db>
#
-db := oracle pgsql sqlite mysql
+db := mssql oracle pgsql sqlite mysql
.PHONY: all test clean $(db) $(addsuffix -test,$(db)) $(addsuffix -clean,$(db))
all: $(db)
test: $(addsuffix -test,$(db))
-test: $(addsuffix -clean,$(db))
+clean: $(addsuffix -clean,$(db))
define set_dirs
edir := $$(wildcard examples-$1-default)