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 /juk/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 'juk/Makefile.am')
-rw-r--r-- | juk/Makefile.am | 113 |
1 files changed, 113 insertions, 0 deletions
diff --git a/juk/Makefile.am b/juk/Makefile.am new file mode 100644 index 00000000..4fba4b1e --- /dev/null +++ b/juk/Makefile.am @@ -0,0 +1,113 @@ +bin_PROGRAMS = juk +check_PROGRAMS = tagguessertest + +juk_SOURCES = \ + advancedsearchdialog.cpp \ + actioncollection.cpp \ + akodeplayer.cpp \ + artsplayer.cpp \ + cache.cpp \ + categoryreaderinterface.cpp \ + collectionlist.cpp \ + coverdialog.cpp \ + coverdialogbase.ui \ + covericonview.cpp \ + coverinfo.cpp \ + covermanager.cpp \ + deletedialog.cpp \ + deletedialogbase.ui \ + directorylist.cpp \ + directorylistbase.ui \ + dynamicplaylist.cpp \ + exampleoptions.cpp \ + exampleoptionsbase.ui \ + folderplaylist.cpp \ + filehandle.cpp \ + filerenamer.cpp \ + filerenamerbase.ui \ + filerenameroptions.cpp \ + filerenameroptionsbase.ui \ + filerenamerconfigdlg.cpp \ + gstreamerplayer.cpp \ + webimagefetcher.cpp \ + webimagefetcherdialog.cpp \ + historyplaylist.cpp \ + juk.cpp \ + jukIface.skel \ + k3bexporter.cpp \ + keydialog.cpp \ + main.cpp \ + mediafiles.cpp \ + musicbrainzquery.cpp \ + nowplaying.cpp \ + playermanager.cpp \ + playlist.cpp \ + playlistbox.cpp \ + playlistcollection.cpp \ + playlistinterface.cpp \ + playlistitem.cpp \ + playlistsearch.cpp \ + playlistsplitter.cpp \ + searchplaylist.cpp \ + searchwidget.cpp \ + slideraction.cpp \ + sortedstringlist.cpp \ + splashscreen.cpp \ + statuslabel.cpp \ + stringshare.cpp \ + systemtray.cpp \ + tag.cpp \ + tageditor.cpp \ + tagguesser.cpp \ + tagguesserconfigdlg.cpp \ + tagguesserconfigdlgwidget.ui \ + tagrenameroptions.cpp \ + tagtransactionmanager.cpp \ + trackpickerdialog.cpp \ + trackpickerdialogbase.ui \ + tracksequenceiterator.cpp \ + tracksequencemanager.cpp \ + treeviewitemplaylist.cpp \ + upcomingplaylist.cpp \ + ktrm.cpp \ + viewmode.cpp + +tagguessertest_SOURCES = tagguessertest.cpp tagguesser.cpp + +INCLUDES= $(all_includes) $(taglib_includes) $(akode_includes) $(GST_CFLAGS) $(ARTS_CFLAGS) + +################################################## +# check to see if MusicBrainz is available +################################################## +if link_lib_MB +mblibs = -ltunepimp +endif +################################################## + +juk_LDADD = -lm $(LDADD_GST) $(mblibs) $(LIB_KIO) $(taglib_libs) $(akode_libs) $(LIB_KHTML) $(LIB_ARTS) +juk_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LDFLAGS_GST) + +KDE_CXXFLAGS = $(USE_EXCEPTIONS) + +tagguessertest_LDADD = $(LIB_KDECORE) +tagguessertest_LDFLAGS = $(all_libraries) + +SUBDIRS = pics + +rcdir = $(kde_datadir)/juk +rc_DATA = jukui.rc jukui-rtl.rc + +servicemenudir = $(kde_datadir)/konqueror/servicemenus +servicemenu_DATA = jukservicemenu.desktop + +METASOURCES = AUTO +KDE_ICON = AUTO +POFILES = AUTO + +xdg_apps_DATA = juk.desktop + +messages: rc.cpp + $(EXTRACTRC) *.rc >> rc.cpp + $(XGETTEXT) *.rc *.cpp *.h -o $(podir)/juk.pot + -rm rc.cpp +KDE_OPTIONS=nofinal |