blob: 4072718a78551abe4ea7afd1283e88a2abec8e6c (
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
lib_LTLIBRARIES = libkrossmain.la
libkrossmain_la_SOURCES = krossconfig.cpp mainmodule.cpp scriptcontainer.cpp manager.cpp \
scriptaction.cpp scriptguiclient.cpp wdgscriptsmanagerbase.ui wdgscriptsmanager.cpp
libkrossmain_la_LDFLAGS = $(all_libraries) $(VER_INFO) -Wnounresolved
mainincludedir=$(includedir)/kross/main
maininclude_HEADERS = \
krossconfig.h \
mainmodule.h \
manager.h \
scriptaction.h \
scriptcontainer.h \
scriptguiclient.h \
wdgscriptsmanager.h \
wdgscriptsmanagerbase.h
libkrossmain_la_LIBADD = \
$(LIB_QT) \
$(LIB_TDECORE) \
$(LIB_KFILE) \
$(LIB_TDEUI) \
$(LIB_KNEWSTUFF) \
$(LIB_KROSS_API)
METASOURCES = AUTO
SUBDIRS = .
INCLUDES = $(KROSS_INCLUDES) $(all_includes)
noinst_HEADERS = wdgscriptsmanager.h
|