diff options
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 71b7ecf..4bb2793 100644 --- a/boost/makefile +++ b/boost/makefile @@ -5,13 +5,15 @@ include $(dir $(lastword $(MAKEFILE_LIST)))../build/bootstrap.make -all_dirs := common mysql sqlite +all_dirs := common mysql sqlite pgsql dirs := common ifeq ($(db_id),mysql) dirs += mysql else ifeq ($(db_id),sqlite) dirs += sqlite +else ifeq ($(db_id),pgsql) +dirs += pgsql endif default := $(out_base)/ |