blob: 5eff2abeb3f7b26bb5d760fb7792c4a97efa93d8 (
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
|
include $(top_srcdir)/lib/kross/Makefile.global
kde_module_LTLIBRARIES = krosspython.la
krosspython_la_LDFLAGS = $(KDE_PLUGIN) $(all_libraries) $(LIBPYTHON) $(PYTHONLIB) -module $(VER_INFO)
noinst_HEADERS = \
pythonextension.h \
pythonmodule.h \
pythonobject.h \
pythonscript.h \
pythonsecurity.h \
pythoninterpreter.h \
pythonconfig.h
krosspython_la_SOURCES = \
pythonextension.cpp \
pythonmodule.cpp \
pythonobject.cpp \
pythonscript.cpp \
pythonsecurity.cpp \
pythoninterpreter.cpp
krosspython_la_LIBADD = \
$(LIB_QT) \
$(LIB_KDECORE) \
cxx/libkrosspythoncxx.la \
../api/libkrossapi.la \
../main/libkrossmain.la
INCLUDES = $(KROSS_INCLUDES) $(PYTHONINC) $(all_includes)
METASOURCES = AUTO
SUBDIRS = cxx scripts .
|