1 ###############################################################################
 
   2 # $Id: Makefile,v 1.9 2008/12/04 17:15:53 faust Exp $
 
   3 ###############################################################################
 
   5 include ../../../../../Makefile.conf
 
   9 PROG = mod_store_firebird.so
 
  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
 
  26 FB_CFLAGS = $(shell fb_config --cflags)
 
  27 FB_LDFLAGS = $(shell fb_config --libs)
 
  29 CXXFLAGS +=  $(FB_CFLAGS)
 
  30 LDFLAGS += $(FB_LDFLAGS)
 
  32 include ../../Makefile.in