###############################################################################
# $Id: Makefile,v 1.6 2010/03/25 10:35:55 faust Exp $
###############################################################################

include ../../../../../Makefile.conf

PROG = mod_store_mysql.so

SRCS = ./mysql_store.cpp

STGLIBS = common \
	  crypto \
	  logger

MYSQL_CFLAGS = $(shell mysql_config --cflags)
MYSQL_LDFLAGS = $(shell mysql_config --libs_r)

CXXFLAGS += $(MYSQL_CFLAGS)
LIBS += $(MYSQL_LDFLAGS)

include ../../Makefile.in