]> git.stg.codes - stg.git/blob - projects/stargazer/plugins/store/firebird/Makefile
0e669751c6157a5f481f28ce7330f99c3174e251
[stg.git] / projects / stargazer / plugins / store / firebird / Makefile
1 ###############################################################################
2 # $Id: Makefile,v 1.9 2008/12/04 17:15:53 faust Exp $
3 ###############################################################################
4
5 include ../../../../../Makefile.conf
6
7 DEFS += -DIBPP_LINUX
8
9 PROG = mod_store_firebird.so
10
11 SRCS =  ./firebird_store.cpp \
12         ./firebird_store_admins.cpp \
13         ./firebird_store_corporations.cpp \
14         ./firebird_store_messages.cpp \
15         ./firebird_store_services.cpp \
16         ./firebird_store_tariffs.cpp \
17         ./firebird_store_users.cpp \
18         ./firebird_store_utils.cpp
19
20 STGLIBS = ibpp \
21           common \
22           locker \
23           logger \
24           crypto
25
26 FB_CFLAGS = $(shell fb_config --cflags)
27 FB_LDFLAGS = $(shell fb_config --libs)
28
29 CXXFLAGS +=  $(FB_CFLAGS)
30 LDFLAGS += $(FB_LDFLAGS)
31
32 include ../../Makefile.in
33