aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-01-13 12:03:34 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-01-20 15:45:46 +0200
commit47ce8460b0403981528a8ebfc69945586b9374ad (patch)
treee97d4ec74e729f69c3aed165cc967e574b21e6e0
parent306781934b1ae960c7c4bab900da7b1c9d3ccaac (diff)
Add SQL Server directory
-rw-r--r--boost/makefile13
-rw-r--r--makefile19
-rw-r--r--qt/makefile13
3 files changed, 6 insertions, 39 deletions
diff --git a/boost/makefile b/boost/makefile
index dcc5d32..a8edf49 100644
--- a/boost/makefile
+++ b/boost/makefile
@@ -5,18 +5,9 @@
include $(dir $(lastword $(MAKEFILE_LIST)))../build/bootstrap.make
-all_dirs := common mysql sqlite pgsql oracle
+all_dirs := common mysql sqlite pgsql oracle mssql
dirs := common
-
-ifeq ($(db_id),mysql)
-dirs += mysql
-else ifeq ($(db_id),sqlite)
-dirs += sqlite
-else ifeq ($(db_id),pgsql)
-dirs += pgsql
-else ifeq ($(db_id),oracle)
-dirs += oracle
-endif
+dirs += $(db_id)
default := $(out_base)/
dist := $(out_base)/.dist
diff --git a/makefile b/makefile
index e7184f9..576792d 100644
--- a/makefile
+++ b/makefile
@@ -5,24 +5,9 @@
include $(dir $(lastword $(MAKEFILE_LIST)))build/bootstrap.make
-all_dirs := libcommon common mysql sqlite pgsql oracle boost qt
+all_dirs := libcommon common mysql sqlite pgsql oracle mssql boost qt
dirs := common boost qt
-
-ifeq ($(db_id),mysql)
-dirs += mysql
-endif
-
-ifeq ($(db_id),sqlite)
-dirs += sqlite
-endif
-
-ifeq ($(db_id),pgsql)
-dirs += pgsql
-endif
-
-ifeq ($(db_id),oracle)
-dirs += oracle
-endif
+dirs += $(db_id)
default := $(out_base)/
dist := $(out_base)/.dist
diff --git a/qt/makefile b/qt/makefile
index e0ec91d..f491174 100644
--- a/qt/makefile
+++ b/qt/makefile
@@ -5,18 +5,9 @@
include $(dir $(lastword $(MAKEFILE_LIST)))../build/bootstrap.make
-all_dirs := common mysql sqlite pgsql oracle
+all_dirs := common mysql sqlite pgsql oracle mssql
dirs := common
-
-ifeq ($(db_id),mysql)
-dirs += mysql
-else ifeq ($(db_id),sqlite)
-dirs += sqlite
-else ifeq ($(db_id),pgsql)
-dirs += pgsql
-else ifeq ($(db_id),oracle)
-dirs += oracle
-endif
+dirs += $(db_id)
default := $(out_base)/
dist := $(out_base)/.dist