You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
3.1 KiB
70 lines
3.1 KiB
# This Makefile.am was taken from the tdelibs distribution and
|
|
# modified for DCOP. Preston Brown (Oct 10, 1999)
|
|
#
|
|
# Copyright (c) 1999 Preston Brown <pbrown@kde.org>
|
|
# Copyright (c) 1999 Matthias Ettrich <ettrich@kde.org>
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
# in the Software without restriction, including without limitation the rights
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
# furnished to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included in
|
|
# all copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
|
# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
SUBDIRS = KDE-ICE . dcopidl dcopidlng dcopidl2cpp client tests
|
|
KDE_OPTIONS = qtonly
|
|
|
|
INCLUDES = $(all_includes)
|
|
|
|
bin_PROGRAMS = dcopserver_shutdown
|
|
check_PROGRAMS = testdcop testdcopc dcop_deadlock_test
|
|
|
|
lib_LTLIBRARIES = libDCOP.la
|
|
libDCOP_la_LIBADD = KDE-ICE/libkICE.la $(LIB_QT)
|
|
libDCOP_la_LDFLAGS = $(KDE_RPATH) -version-info 6:0:2 -no-undefined $(all_libraries)
|
|
libDCOP_la_NMCHECK = $(srcdir)/libDCOP.nmcheck
|
|
libDCOP_la_NMCHECKWEAK = $(srcdir)/libDCOP_weak.nmcheck $(top_srcdir)/tdecore/libqt-mt_weak.nmcheck
|
|
|
|
include_HEADERS = dcopclient.h dcopobject.h dcopstub.h dcopref.h dcoptypes.h kdatastream.h
|
|
noinst_HEADERS = version.h dcopglobal.h dcopserver.h testdcop.h dcopsignals.h dcop-path.h
|
|
|
|
METASOURCES = AUTO
|
|
|
|
# dcopstub needs to go first for --enable-final to work
|
|
libDCOP_la_SOURCES = dcopstub.cpp dcopref.cpp dcopobject.cpp dcopclient.cpp
|
|
|
|
tdeinit_LTLIBRARIES = dcopserver.la
|
|
dcopserver_la_LDFLAGS = -module -avoid-version $(all_libraries)
|
|
dcopserver_la_SOURCES = dcopserver.cpp dcopsignals.cpp
|
|
dcopserver_la_LIBADD = libDCOP.la $(LIB_QT)
|
|
|
|
dcopserver_shutdown_SOURCES = dcopserver_shutdown.c
|
|
|
|
testdcop_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -lktexteditor
|
|
testdcop_SOURCES = testdcop.cpp
|
|
testdcop_LDADD = libDCOP.la
|
|
|
|
dcop_deadlock_test_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -lktexteditor
|
|
dcop_deadlock_test_SOURCES = dcop_deadlock_test.cpp
|
|
dcop_deadlock_test_LDADD = ../tdecore/libtdecore.la
|
|
|
|
testdcopc_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -lktexteditor
|
|
testdcopc_SOURCES = testdcopc.c dcopc.c
|
|
testdcopc_LDADD = KDE-ICE/libkICE.la $(LIBSM)
|
|
|
|
EXTRA_DIST = HOWTO ICE Mainpage.dox
|
|
|
|
DOXYGEN_REFERENCES = tdecore
|
|
DOXYGEN_EXCLUDE = KDE-ICE
|
|
include ../admin/Doxyfile.am
|