~ubuntu-branches/debian/sid/kdevelop/sid

« back to all changes in this revision

Viewing changes to languages/ruby/app_templates/kapp/src-Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2010-05-05 07:21:55 UTC
  • mfrom: (1.2.3 upstream) (5.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100505072155-h78lx19pu04sbhtn
Tags: 4:4.0.0-2
* Upload to unstable (Closes: #579947, #481832).
* Acknowledge obsolete NMU fixes (Closes: #562410, #546961).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
## Makefile.am for %{APPNAMELC}
2
 
 
3
 
# this is the program that gets installed.  it's name is used for all
4
 
# of the other Makefile.am variables
5
 
bin_PROGRAMS = %{APPNAMELC}
6
 
 
7
 
# set the include path for X, qt and KDE
8
 
INCLUDES = $(all_includes) -I$(RUBY_ARCHDIR)
9
 
 
10
 
# the library search path. 
11
 
%{APPNAMELC}_LDFLAGS = $(all_libraries) $(KDE_RPATH) -L$(RUBY_LIBDIR)
12
 
 
13
 
# the libraries to link against.
14
 
%{APPNAMELC}_LDADD = $(LIB_KFILE) $(LIB_KDEPRINT) $(RUBY_LIBRUBYARG)
15
 
 
16
 
# which sources should be compiled for %{APPNAMELC}
17
 
%{APPNAMELC}_SOURCES = %{APPNAMELC}.cpp
18
 
 
19
 
# let automoc handle all of the meta source files (moc)
20
 
METASOURCES = AUTO
21
 
 
22
 
KDE_ICON = AUTO
23
 
 
24
 
# this is where the kdelnk file will go 
25
 
kdelnkdir   = $(kde_appsdir)/Utilities
26
 
kdelnk_DATA = %{APPNAMELC}.desktop
27
 
 
28
 
# this is where the XML-GUI resource file goes
29
 
rcdir = $(kde_datadir)/%{APPNAMELC}
30
 
rc_DATA = %{APPNAMELC}ui.rc
31
 
 
32
 
rubysrc_DATA = main.rb %{APPNAMELC}.rb %{APPNAMELC}_client.rb  %{APPNAMELC}iface.rb  \
33
 
                %{APPNAMELC}view.rb  pref.rb
34
 
 
35
 
rubysrcdir = $(kde_datadir)/%{APPNAMELC}
36
 
 
37
 
rubyui_DATA = 
38
 
 
39
 
rubyuidir = $(kde_datadir)/%{APPNAMELC}
40
 
 
41
 
%.rb: %.ui
42
 
        $(RBUIC) -tr ${UIC_TR} -kde $< -o $@
43