Navigation Menu

Skip to content

Commit

Permalink
unify source list.
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Dec 28, 2011
1 parent 1729e4e commit f4aca6f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -28,7 +28,7 @@ cscope.out
/missing
/stamp-h1
/src/scratch
/libha_groonga.a
/libgroonga.a
/packages/rpm/*/*.spec
/packages/yum/fedora/
/packages/yum/centos/
Expand Down
13 changes: 9 additions & 4 deletions Makefile.am
Expand Up @@ -13,16 +13,21 @@ noinst_HEADERS = \
mrn_mysql.h \
mrn_mysql_compat.h

sources = \
ha_mroonga.cc \
mrn_sys.c \
mrn_table.cc

plugin_LTLIBRARIES = ha_groonga.la
ha_groonga_la_LDFLAGS = -module $(GROONGA_LIBS)
ha_groonga_la_CXXFLAGS = $(AM_CXXFLAGS) $(MYSQL_CFLAGS) -DMYSQL_DYNAMIC_PLUGIN
ha_groonga_la_CFLAGS = $(AM_CFLAGS) $(MYSQL_CFLAGS) -DMYSQL_DYNAMIC_PLUGIN
ha_groonga_la_SOURCES = ha_mroonga.cc mrn_sys.c mrn_table.cc
ha_groonga_la_SOURCES = $(sources)

plugin_LIBRARIES = libgroonga.a
libgroonga_a_CXXFLAGS = $(AM_CXXFLAGS) $(MYSQL_CFLAGS)
libgroonga_a_CFLAGS = $(AM_CFLAGS) $(MYSQL_CFLAGS)
libgroonga_a_SOURCES = ha_mroonga.cc mrn_sys.c mrn_table.cc
libgroonga_a_CXXFLAGS = $(AM_CXXFLAGS) $(MYSQL_CFLAGS)
libgroonga_a_CFLAGS = $(AM_CFLAGS) $(MYSQL_CFLAGS)
libgroonga_a_SOURCES = $(sources)

SUBDIRS = \
test \
Expand Down

0 comments on commit f4aca6f

Please sign in to comment.