blob: 773c341b680489adf177dd9f439760409e3d0c67 (
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
|
AUTOMAKE_OPTIONS = foreign
KDE_CXXFLAGS = -DQT_PLUGIN
INCLUDES = $(all_includes)
twindir = $(kde_datadir)/twin/
twin_DATA = riscos.desktop
noinst_HEADERS = AboveButton.h \
Button.h \
CloseButton.h \
HelpButton.h \
IconifyButton.h \
LowerButton.h \
Manager.h \
MaximiseButton.h \
Palette.h \
Static.h \
StickyButton.h
kde_module_LTLIBRARIES = twin3_riscos.la
twin3_riscos_la_SOURCES = AboveButton.cpp \
Button.cpp \
CloseButton.cpp \
HelpButton.cpp \
IconifyButton.cpp \
LowerButton.cpp \
Manager.cpp \
MaximiseButton.cpp \
Static.cpp \
StickyButton.cpp
twin3_riscos_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN) -module $(LIB_QT) $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx
twin3_riscos_la_LIBADD = $(LIB_TDEUI) -ltdecorations
twin3_riscos_la_METASOURCES = AUTO
EXTRA_DIST = $(twin_DATA)
|