1 ###############################################################################
2 # $Id: Makefile,v 1.6 2010/03/25 10:35:55 faust Exp $
3 ###############################################################################
5 include ../../../../../Makefile.conf
7 PROG = mod_store_mysql.so
9 SRCS = ./mysql_store.cpp
11 STGLIBS = -lstg_common -lstg_crypto
13 MYSQL_CFLAGS = $(shell mysql_config --cflags)
14 MYSQL_LDFLAGS = $(shell mysql_config --libs_r)
16 CXXFLAGS += $(MYSQL_CFLAGS)
17 LIBS += $(MYSQL_LDFLAGS)
19 include ../../Makefile.in