]> git.stg.codes - stg.git/blob - projects/stargazer/plugins/store/mysql/Makefile
25a29798a4050ff475bc13caf046b210852f0356
[stg.git] / projects / stargazer / plugins / store / mysql / Makefile
1 ###############################################################################
2 # $Id: Makefile,v 1.6 2010/03/25 10:35:55 faust Exp $
3 ###############################################################################
4
5 include ../../../../../Makefile.conf
6
7 PROG = mod_store_mysql.so
8
9 SRCS = ./mysql_store.cpp
10
11 STGLIBS = common \
12           crypto \
13           logger
14
15 MYSQL_CFLAGS = $(shell mysql_config --cflags)
16 MYSQL_LDFLAGS = $(shell mysql_config --libs_r)
17
18 CXXFLAGS += $(MYSQL_CFLAGS)
19 LIBS += $(MYSQL_LDFLAGS)
20
21 include ../../Makefile.in
22