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.
114 lines
2.5 KiB
114 lines
2.5 KiB
15 years ago
|
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
|