blob: 03a938d2afa4a07274b3f813b2892026bde3cbe2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
lib_LTLIBRARIES = libkmdr%{APPNAMELC}.la
# the library search path.
libkmdr%{APPNAMELC}_la_LDFLAGS = -module $(KDE_PLUGIN) \
$(HK_LDFLAGS) $(all_libraries)
# the libraries to link against.
libkmdr%{APPNAMELC}_la_LIBADD = -lkommanderwidget -lkommanderplugin \
$(LIB_TDEPARTS) $(LIB_TDEUI)
# which sources should be compiled for widgets
libkmdr%{APPNAMELC}_la_SOURCES = %{APPNAMELC}.cpp %{APPNAMELC}plugin.cpp
# these are the headers for your project that won't be installed
# let automoc handle all of the meta source files (moc)
METASOURCES = AUTO
AM_CPPFLAGS= $(all_includes)
|