diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2012-01-30 14:59:00 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2012-01-30 14:59:00 +0200 |
commit | 8ec6ff7ce47182792071cdae7b783145cbad7edf (patch) | |
tree | a515f53378aa2d561c61c734883b5a10de9e759d /git/makefile | |
parent | acbb8d3c3f3611625eced9caecc190539306f3c0 (diff) |
Add mssql, fix clean target
Diffstat (limited to 'git/makefile')
-rw-r--r-- | git/makefile | 4 |
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) |