diff options
author | Constantin Michael <constantin@codesynthesis.com> | 2011-07-13 09:57:57 +0200 |
---|---|---|
committer | Constantin Michael <constantin@codesynthesis.com> | 2011-07-13 09:57:57 +0200 |
commit | 17ef17f80abf35c63add4152a3e9e067fffa40b7 (patch) | |
tree | 394afb8af980bd2124cf1a0cac65c9fa6d8a7412 | |
parent | 5ea55acce8ae8bc0361696ed2ff413eefaf89a8e (diff) |
Allow for selective building of profile tests dependent on database
-rw-r--r-- | makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -6,14 +6,14 @@ include $(dir $(lastword $(MAKEFILE_LIST)))build/bootstrap.make all_dirs := libcommon common tracer mysql sqlite pgsql boost qt -dirs := common tracer boost qt +dirs := common tracer ifeq ($(db_id),mysql) -dirs += mysql +dirs += boost qt mysql endif ifeq ($(db_id),sqlite) -dirs += sqlite +dirs += boost qt sqlite endif ifeq ($(db_id),pgsql) |