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 /arts/builder/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 'arts/builder/Makefile.am')
-rw-r--r-- | arts/builder/Makefile.am | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/arts/builder/Makefile.am b/arts/builder/Makefile.am new file mode 100644 index 00000000..3f5ce2b3 --- /dev/null +++ b/arts/builder/Makefile.am @@ -0,0 +1,39 @@ +SUBDIRS = pics +# set the include path for X, qt, KDE, mico and the synthesizer class defs +INCLUDES= -I$(top_srcdir)/arts/runtime -I$(top_builddir)/arts/runtime -I$(kde_includes)/arts $(all_includes) + +xdg_apps_DATA = artsbuilder.desktop + +kdemime_DATA = x-artsbuilder.desktop +kdemimedir = $(kde_mimedir)/application + +bin_PROGRAMS = artsbuilder + +artsbuilder_SOURCES = autorouter.cpp main.cpp propertypanelbase.ui \ + module.cpp propertypanel.cpp structure.cpp \ + retrievedlg.cpp createtool.cpp structureport.cpp \ + drawutils.cpp scomponent.cpp portposdlg.cpp \ + menumaker.cpp session.cpp dirmanager.cpp mwidget.cpp \ + execdlg.cpp qttableview.cpp interfacedlg.cpp +artsbuilder_COMPILE_FIRST = ../runtime/artsbuilder.h + +noinst_HEADERS = qttableview.h + +METASOURCES = AUTO + +artsbuilder_LDFLAGS = $(all_libraries) $(KDE_RPATH) + +# the libraries to link against. Be aware of the order. First the libraries, +# that depend on the following ones. +artsbuilder_LDADD = $(LIB_KFILE) -lqtmcop $(LIB_X11) $(LIBPTHREAD) $(top_builddir)/arts/runtime/libartsbuilder.la -lsoundserver_idl -lartskde + +rcdir = $(kde_datadir)/artsbuilder +rc_DATA = artsbuilderui.rc + +# make messages.po. Move this one to ../po/ and "make merge" in po +# the -x is for skipping messages already translated in kdelibs +messages: rc.cpp + $(XGETTEXT) *.cpp -o $(podir)/artsbuilder.pot + +propertypanel.h: propertypanelbase.h + |