diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-02-17 00:32:19 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-02-17 00:32:19 +0000 |
commit | 0d382a262c0638d0f572fc37193ccc5ed3dc895f (patch) | |
tree | 8578dcddfce4191f3f7a142a37769df7add48475 /src/Makefile.am | |
download | k9copy-0d382a262c0638d0f572fc37193ccc5ed3dc895f.tar.gz k9copy-0d382a262c0638d0f572fc37193ccc5ed3dc895f.zip |
Added old abandoned version of k9copy
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k9copy@1091546 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..08a6ed0 --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,59 @@ +# set the include path for X, qt and KDE +INCLUDES = -I$(top_srcdir)/dvdread -I$(top_srcdir)/k9Mplayer \ + -I$(top_srcdir)/k9author -I$(top_srcdir)/k9decmpeg -I$(top_srcdir)/k9devices \ + -I$(top_srcdir)/k9vamps -I$(top_srcdir)/libdvdnav -I$(top_srcdir)/libk9copy $(all_includes) + +# these are the headers for your project +noinst_HEADERS = k9copy.h k9glwidget.h k9langselect.h k9main.h \ + k9mencodercmdgen.h k9mp4title.h k9play.h k9playbackoptions.h k9prefauthor.h k9prefdvd.h \ + k9prefmencoder.h k9prefmpeg4.h k9prefpreview.h k9redirect.h k9settings.h k9titlefactor.h \ + k9updatefactor.h kconfigdlg.h + +# let automoc handle all of the meta source files (moc) +METASOURCES = AUTO + + +KDE_ICON = k9copy + +######################################################################### +# APPLICATION SECTION +######################################################################### +# this is the program that gets installed. it's name is used for all +# of the other Makefile.am variables +bin_PROGRAMS = k9copy + +# the application source, library search path, and link libraries +k9copy_SOURCES = configDlg.ui images.h k9copy.cpp k9copy.png k9glwidget.cpp \ + k9langselect.cpp k9main.cpp k9mainw.ui k9mencodercmdgen.cpp k9mp4title.cpp k9play.cpp \ + k9playbackoptions.cpp k9prefauthor.cpp k9prefdvd.cpp k9prefmencoder.cpp k9prefmpeg4.cpp \ + k9prefpreview.cpp k9redirect.cpp k9settings.cpp k9titlefactor.cpp k9updatefactor.cpp \ + kconfigdlg.cpp kviewmpeg2.cpp kviewmpeg2.h langselectw.ui main.cpp mencoderCmdGen.ui \ + playbackoptionsw.ui prefAuthor.ui prefDVD.ui prefMPEG4.ui prefMencoder.ui prefpreview.ui \ + titlefactor.ui viewmpeg2.ui +k9copy_LDFLAGS = $(KDE_RPATH) $(all_libraries) +k9copy_LDADD = $(top_builddir)/k9Mplayer/libk9mplayer.la \ + $(top_builddir)/k9author/libk9author.la $(top_builddir)/k9decmpeg/libk9decmpeg.la \ + $(top_builddir)/k9devices/libk9devices.la $(top_builddir)/k9vamps/libk9vamps.la \ + $(top_builddir)/libdvdnav/libk9dvdnav.la $(top_builddir)/libk9copy/libk9copy.la \ + $(top_builddir)/dvdread/libdvdread.la $(LIB_KDEUI) -lkmdi + +# this is where the desktop file will go +shelldesktopdir = $(kde_appsdir)/Utilities + + +# this is where the shell's XML-GUI resource file goes +shellrcdir = $(kde_datadir)/k9copy +shellrc_DATA = k9copyui.rc + +appsdatadir = $(kde_datadir)/k9copy +appsdata_DATA = anim.mng mencoder.xml + +AM_CXXFLAGS = -O3 -g3 + +applnkMultimedia_DATA = k9copy.desktop +applnkMultimediadir = $(xdg_appsdir) +SUBDIRS = icons + +konquerorServicesMenusdir = $(kde_datadir)/konqueror/servicemenus + +konquerorServicesMenus_DATA = k9copy_open.desktop |