]> git.stg.codes - stg.git/blob - projects/stargazer/plugins/store/postgresql/Makefile
Simplified STG_LOCKER.
[stg.git] / projects / stargazer / plugins / store / postgresql / Makefile
1 ###############################################################################
2 # $Id: Makefile,v 1.4 2010/04/26 12:44:42 faust Exp $
3 ###############################################################################
4
5 include ../../../../../Makefile.conf
6
7 PROG = mod_store_postgresql.so
8
9 SRCS =  ./postgresql_store.cpp \
10         ./postgresql_store_admins.cpp \
11         ./postgresql_store_corporations.cpp \
12         ./postgresql_store_messages.cpp \
13         ./postgresql_store_services.cpp \
14         ./postgresql_store_tariffs.cpp \
15         ./postgresql_store_users.cpp \
16         ./postgresql_store_utils.cpp
17
18 STGLIBS = common \
19           crypto \
20           logger
21
22 PG_CFLAGS = $(shell pg_config --includedir)
23 PG_LDFLAGS = $(shell pg_config --libdir)
24
25 CXXFLAGS +=  -I $(PG_CFLAGS)
26 LDFLAGS += -L $(PG_LDFLAGS)
27
28 LIBS += -lpq
29
30 include ../../Makefile.in
31