You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
amarok/amarok/src/database_refactor/_Makefile.am

36 lines
686 B

noinst_LTLIBRARIES = libdbengine.la
INCLUDES = \
-I$(top_srcdir)/amarok/src/plugin \
-I$(top_srcdir)/amarok/src \
-I$(top_srcdir)/amarok/src/engine \
-I$(top_srcdir)/amarok/src/amarokcore \
-I$(top_srcdir)/amarok/src/statusbar \
$(all_includes)
#if enable_sqlite
SQLITE_DBENGINE_SUBDIR = sqlite
#endif
if enable_mysql
MYSQL_DBENGINE_SUBDIR = mysql
endif
if enable_postgresql
POSTGRESQL_DBENGINE_SUBDIR = postgresql
endif
libdbengine_la_SOURCES = \
dbenginebase.cpp
noinst_HEADERS = dbenginebase.h
METASOURCES = \
AUTO
SUBDIRS = . \
$(SQLITE_DBENGINE_SUBDIR) \
$(MYSQL_DBENGINE_SUBDIR) \
$(POSTGRESQL_DBENGINE_SUBDIR)