~ubuntu-branches/ubuntu/hoary/kdemultimedia/hoary

« back to all changes in this revision

Viewing changes to arts/builder/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Martin Schulze
  • Date: 2003-01-22 15:00:51 UTC
  • Revision ID: james.westby@ubuntu.com-20030122150051-uihwkdoxf15mi1tn
Tags: upstream-2.2.2
ImportĀ upstreamĀ versionĀ 2.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
KDE_CXXFLAGS = -UQT_NO_ASCII_CAST
 
2
 
 
3
SUBDIRS = pics 
 
4
# just set the variable
 
5
APPSDIR = $(kde_appsdir)/Multimedia
 
6
# set the include path for X, qt, KDE, mico and the synthesizer class defs
 
7
INCLUDES= -I$(top_srcdir)/arts/runtime -I$(top_builddir)/arts/runtime  -I$(kde_includes)/arts  $(all_includes)
 
8
 
 
9
applnk_DATA = artsbuilder.desktop
 
10
applnkdir = $(kde_appsdir)/Multimedia
 
11
 
 
12
kdemime_DATA = x-artsbuilder.desktop
 
13
kdemimedir = $(kde_mimedir)/application
 
14
 
 
15
####### This part is very artsbuilder specific
 
16
# you can add here more. This one gets installed 
 
17
bin_PROGRAMS =  artsbuilder
 
18
 
 
19
# Which sources should be compiled for artsbuilder.
 
20
artsbuilder_SOURCES = autorouter.cpp main.cpp \
 
21
  module.cpp portpropdlg.cpp structure.cpp namedlg.cpp \
 
22
  retrievedlg.cpp createtool.cpp structureport.cpp \
 
23
  drawutils.cpp scomponent.cpp portposdlg.cpp \
 
24
  menumaker.cpp session.cpp dirmanager.cpp \
 
25
  portablekde.cpp execdlg.cpp
 
26
 
 
27
METASOURCES = AUTO
 
28
 
 
29
# the library search path. 
 
30
artsbuilder_LDFLAGS = $(all_libraries) $(KDE_RPATH)
 
31
 
 
32
# the libraries to link against. Be aware of the order. First the libraries,
 
33
# that depend on the following ones.
 
34
artsbuilder_LDADD   = $(LIB_KFILE) -lqtmcop $(LIB_X11) $(LIBPTHREAD) $(top_builddir)/arts/runtime/libartsbuilder.la -lsoundserver_idl
 
35
 
 
36
# make messages.po. Move this one to ../po/ and "make merge" in po
 
37
# the -x is for skipping messages already translated in kdelibs
 
38
messages:
 
39
        $(XGETTEXT) *.cpp -o $(podir)/artsbuilder.pot
 
40