summaryrefslogtreecommitdiffstats
path: root/kgeography/src/Makefile.am
blob: 196a8020fdb3c44b239ec5bc1a659a121bca0ef3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
## Makefile.am for kgeography

# this is the program that gets installed.  it's name is used for all
# of the other Makefile.am variables
bin_PROGRAMS = kgeography

# set the include path for X, qt and KDE
INCLUDES         = $(all_includes)

# the library search path.
kgeography_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_TQT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor

# the libraries to link against.
kgeography_LDADD = $(LIB_TDEUI)

# which sources should be compiled for kgeography
kgeography_SOURCES = main.cpp mapwidget.cpp division.cpp map.cpp mapparser.cpp kgeography.cpp mapchooser.cpp mypopup.cpp popupmanager.cpp settings.kcfgc flagdivisionasker.cpp askwidget.cpp mapasker.cpp capitaldivisionasker.cpp divisioncapitalasker.cpp boxasker.cpp divisionflagasker.cpp answer.cpp answersdialog.cpp

# let automoc handle all of the meta source files (moc)
METASOURCES = AUTO

messages: rc.cpp
	$(XGETTEXT) *.cpp -o $(podir)/kgeography.pot

# this is where the kdelnk file will go
xdg_apps_DATA = kgeography.desktop

kde_kcfg_DATA = kgeography.kcfg

# this is where the XML-GUI resource file goes
rcdir = $(kde_datadir)/kgeography
rc_DATA = kgeographyui.rc

debug: kgeography
	ddd ./kgeography

valgrind: kgeography
	valgrind --tool=memcheck --leak-check=yes ./kgeography

noinst_PROGRAMS = script
script_SOURCES = script.cpp
script_LDADD = $(LIB_TQT)
script_LDFLAGS = $(all_libraries)