blob: b4fe49744fb5932040b3055b16c89f606d589eb0 (
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
|
## Makefile.am for pocompendium
# this has all of the subdirectories that make will recurse into. if
# there are none, comment this out
#SUBDIRS =
# this is the program that gets installed. it's name is used for all
# of the other Makefile.am variables
kde_module_LTLIBRARIES = kbabeldict_pocompendium.la
# set the include path for X, qt and KDE
INCLUDES = -I$(srcdir)/../.. -I../../../common -I$(srcdir)/../../../common $(all_includes)
# which sources should be compiled for kbabel
kbabeldict_pocompendium_la_SOURCES = pocompendium.cpp preferenceswidget.cpp \
pc_factory.cpp pwidget.ui compendiumdata.cpp
kbabeldict_pocompendium_la_LIBADD = ../../libkbabeldictplugin.la ../../../common/libkbabelcommon.la $(LIB_KDEUI) $(LIB_KIO)
kbabeldict_pocompendium_la_LDFLAGS = $(all_libraries) -module -avoid-version -no-undefined
# these are the headers for your project
noinst_HEADERS = pocompendium.h preferenceswidget.h pc_factory.h \
compendiumdata.h
# let automoc handle all of the meta source files (moc)
METASOURCES = AUTO
# this is where the kdelnk file will go
#datadir = $(kde_datadir)/kbabeldict/modules
#data_DATA = pocompendium.rc
kde_services_DATA = pocompendium.desktop
EXTRA_DIST = $(kde_services_DATA)
|