diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | e2de64d6f1beb9e492daf5b886e19933c1fa41dd (patch) | |
tree | 9047cf9e6b5c43878d5bf82660adae77ceee097a /libkcddb/Makefile.am | |
download | tdemultimedia-e2de64d6f1beb9e492daf5b886e19933c1fa41dd.tar.gz tdemultimedia-e2de64d6f1beb9e492daf5b886e19933c1fa41dd.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libkcddb/Makefile.am')
-rw-r--r-- | libkcddb/Makefile.am | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/libkcddb/Makefile.am b/libkcddb/Makefile.am new file mode 100644 index 00000000..e5b88c90 --- /dev/null +++ b/libkcddb/Makefile.am @@ -0,0 +1,33 @@ +SUBDIRS = . kcmcddb test + +INCLUDES = -I$(srcdir)/.. $(all_includes) + +lib_LTLIBRARIES = libkcddb.la + +libkcddb_la_SOURCES = \ + cache.cpp cdinfo.cpp config.cpp client.cpp cddb.cpp lookup.cpp \ + cddbplookup.cpp synccddbplookup.cpp asynccddbplookup.cpp httplookup.cpp \ + synchttplookup.cpp asynchttplookup.cpp smtpsubmit.cpp \ + asyncsmtpsubmit.cpp syncsmtpsubmit.cpp configbase.kcfgc \ + submit.cpp sites.cpp httpsubmit.cpp asynchttpsubmit.cpp \ + synchttpsubmit.cpp cdinfodialogbase.ui categories.cpp genres.cpp \ + cdinfoencodingwidget.cpp cdinfoencodingwidgetbase.ui + +libkcddb_la_LDFLAGS = $(all_libraries) -version-info 1:0:0 +libkcddb_la_LIBADD = $(LIB_KDECORE) $(LIB_KIO) + +METASOURCES = AUTO + +kde_kcfg_DATA = libkcddb.kcfg + +kcddbincludedir = $(includedir)/libkcddb +kcddbinclude_HEADERS = \ + cache.h cdinfo.h client.h config.h cddb.h configbase.h + +messages: rc.cpp + $(XGETTEXT) *.cpp -o $(podir)/libkcddb.pot + +config.lo: configbase.h + +include $(top_srcdir)/admin/Doxyfile.am + |