summaryrefslogtreecommitdiffstats
path: root/kbabel/kbabeldict/Makefile.am
blob: 61bfd4ed282467f8ddaab7343b0be892e4f2e801 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
## Makefile.am for kbabeldict

# this has all of the subdirectories that make will recurse into.  if
# there are none, comment this out
SUBDIRS = . modules

pkgincludedir = $(includedir)/kbabel

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

# set the include path for X, qt and KDE
INCLUDES         = -I$(srcdir)/../common -I$(top_builddir)/kbabel/common $(all_includes)


# library for babeldict plugins
lib_LTLIBRARIES = libkbabeldictplugin.la
libkbabeldictplugin_la_SOURCES = searchengine.cpp 
libkbabeldictplugin_la_LIBADD =  $(LIB_TDECORE)
libkbabeldictplugin_la_LDFLAGS = -version-info 3:0:2 $(all_libraries) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor

libkbabeldict_la_SOURCES = kbabeldictbox.cpp \
            kbabeldictiface.skel dictionarymenu.cpp dictchooser.cpp \
            aboutmoduledlg.cpp 
libkbabeldict_la_LIBADD =  ../common/libkbabelcommon.la libkbabeldictplugin.la $(LIB_TDEUI)
libkbabeldict_la_LDFLAGS = $(all_libraries) -no-undefined $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor


kbabeldict_SOURCES = main.cpp kbabeldictview.cpp kbabeldict.cpp kbabelsplash.cpp

# the libraries to link against.
kbabeldict_LDADD   = libkbabeldict.la $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor
kbabeldict_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor

# these are the headers for your project
noinst_HEADERS   =  kbabeldict.h kbabeldictview.h kbabelsplash.h aboutmoduledlg.h
pkginclude_HEADERS = searchengine.h kbabeldictbox.h kbabeldictiface.h \
dictionarymenu.h dictchooser.h 


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

KDE_OPTIONS = nofinal
#rcdir = $(kde_datadir)/kbabel
#rc_DATA = kbabelui.rc

api:
	mkdir -p API && kdoc -d API -u $$PWD/API -p  -ltdeui -ltdecore -lqt -ldcop *.h

distclean-local:
	rm -r -f API

KDE_ICON = kbabeldict

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

kde_servicetypes_DATA = kbabeldict_module.desktop
EXTRA_DIST = $(kde_servicetypes_DATA)

kbabeldictbox.lo: ../common/version.h
main.o: ../common/version.h