]> git.stg.codes - stg.git/blob - projects/stargazer/plugins/store/mysql/Makefile
57c52a6b0b94cf9eb829e29fa3aac0a5a5662cdf
[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
14 MYSQL_CFLAGS = $(shell mysql_config --cflags)
15 MYSQL_LDFLAGS = $(shell mysql_config --libs_r)
16
17 CXXFLAGS += $(MYSQL_CFLAGS)
18 LIBS += $(MYSQL_LDFLAGS)
19
20 include ../../Makefile.in
21