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
|
|
|
5 |
noinst_HEADERS = tilgungsplan.h tilgungsplanwidget.h ziaendwidget.h \
|
|
|
6 |
zinssataenderungwidget.h zinssatzaenderungwidget.h
|
|
|
7 |
|
|
|
8 |
# let automoc handle all of the meta source files (moc)
|
|
|
9 |
METASOURCES = AUTO
|
|
|
10 |
|
|
|
11 |
messages: rc.cpp
|
|
|
12 |
$(EXTRACTRC) `find . -name \*.ui -o -name \*.rc` > rc.cpp
|
|
|
13 |
$(XGETTEXT) *.cpp -o $(podir)/tilgungsplan.pot
|
|
|
14 |
|
|
|
15 |
KDE_ICON = AUTO
|
|
|
16 |
|
|
|
17 |
#########################################################################
|
|
|
18 |
# APPLICATION SECTION
|
|
|
19 |
#########################################################################
|
|
|
20 |
# this is the program that gets installed. it's name is used for all
|
|
|
21 |
# of the other Makefile.am variables
|
|
|
22 |
bin_PROGRAMS = tilgungsplan
|
|
|
23 |
|
|
|
24 |
# the application source, library search path, and link libraries
|
52 |
andreas |
25 |
tilgungsplan_SOURCES = helper.cpp main.cpp tilgrech.cpp tilgungsplan.cpp \
|
|
|
26 |
tilgungsplanwidget.cpp tilgungsplanwidgetbase.ui ziaendwidget.cpp zinssatzaenderung.ui
|
43 |
root |
27 |
tilgungsplan_LDFLAGS = $(KDE_RPATH) $(all_libraries)
|
|
|
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 |
|