Subversion Repositories public

Rev

Rev 66 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
43 root 1
# set the include path for X, qt and KDE
2
INCLUDES = $(all_includes)
3
 
4
# these are the headers for your project
69 andreas 5
noinst_HEADERS = tilgungsplan.h tilgungsplanwidget.h ziaendwidget.h
43 root 6
 
7
# let automoc handle all of the meta source files (moc)
8
METASOURCES = AUTO
9
 
10
messages: rc.cpp
11
	$(EXTRACTRC) `find . -name \*.ui -o -name \*.rc` > rc.cpp
12
	$(XGETTEXT) *.cpp -o $(podir)/tilgungsplan.pot
13
 
14
KDE_ICON = AUTO
15
 
16
#########################################################################
17
# APPLICATION SECTION
18
#########################################################################
19
# this is the program that gets installed.  it's name is used for all
20
# of the other Makefile.am variables
21
bin_PROGRAMS = tilgungsplan
22
 
23
# the application source, library search path, and link libraries
60 andreas 24
tilgungsplan_SOURCES = helper.cpp main.cpp ratenplan.ui ratenplanwidget.cpp \
25
	tilgrech.cpp tilgungsplan.cpp tilgungsplanwidget.cpp tilgungsplanwidgetbase.ui \
26
	ziaendwidget.cpp zinssatzaenderung.ui
27
tilgungsplan_LDFLAGS = $(KDE_RPATH) $(all_libraries) -lkio
43 root 28
tilgungsplan_LDADD = $(LIB_KDEUI)
29
 
30
# this is where the desktop file will go 
31
shelldesktopdir   = $(kde_appsdir)/Utilities
32
shelldesktop_DATA = tilgungsplan.desktop
33
 
34
# this is where the shell's XML-GUI resource file goes
35
shellrcdir   = $(kde_datadir)/tilgungsplan
36
shellrc_DATA = tilgungsplanui.rc
37