]> git.stg.codes - stg.git/blob - projects/stargazer/plugins/store/firebird/Makefile
a6fb9ccd38bbf7fec708ab0dca2b99a0ae6ca07b
[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           logger \
23           crypto
24
25 FB_CFLAGS = $(shell fb_config --cflags)
26 FB_LDFLAGS = $(shell fb_config --libs)
27
28 CXXFLAGS +=  $(FB_CFLAGS)
29 LDFLAGS += $(FB_LDFLAGS)
30
31 include ../../Makefile.in
32