]> git.stg.codes - stg.git/blob - projects/stargazer/plugins/store/mysql/Makefile
Добавление исходников
[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 = -lconffiles -lstg_common -lstg_crypto
12
13 MYSQL_CFLAGS = $(shell mysql_config --cflags)
14 MYSQL_LDFLAGS = $(shell mysql_config --libs_r)
15
16 CXXFLAGS += $(MYSQL_CFLAGS)
17 LIBS += $(MYSQL_LDFLAGS)
18
19 include ../../Makefile.in
20