diff options
author | Constantin Michael <constantin@codesynthesis.com> | 2011-04-01 18:08:51 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-04-04 18:11:34 +0200 |
commit | 14ca0adb63a48e5bc14a4a2b84e0d108be6dfdd1 (patch) | |
tree | d8440b4ba42b0cbb432397007b91479574b03782 /boost/makefile | |
parent | d2c7dda761658e45d150172991b5231d0e979007 (diff) |
Add SQLite-specific tests for Boost profile
Diffstat (limited to 'boost/makefile')
-rw-r--r-- | boost/makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/boost/makefile b/boost/makefile index a73ace3..71b7ecf 100644 --- a/boost/makefile +++ b/boost/makefile @@ -5,11 +5,13 @@ include $(dir $(lastword $(MAKEFILE_LIST)))../build/bootstrap.make -all_dirs := common mysql +all_dirs := common mysql sqlite dirs := common ifeq ($(db_id),mysql) dirs += mysql +else ifeq ($(db_id),sqlite) +dirs += sqlite endif default := $(out_base)/ |