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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
include $(GNUSTEP_MAKEFILES)/common.make
#
# Main framework
#
FRAMEWORK_NAME = DBusKit
# Include configuration
-include ../config.make
#
# Public headers (will be installed)
#
DBusKit_HEADER_FILES_DIR = ../Headers
DBusKit_HEADER_FILES = \
DBusKit.h \
DKNotificationCenter.h \
DKPort.h \
DKPortNameServer.h \
DKProxy.h \
NSConnection+DBus.h
#
# Class files
#
DBusKit_OBJC_FILES = \
DKArgument.m \
DKEndpoint.m \
DKEndpointManager.m \
DKInterface.m \
DKIntrospectionNode.m \
DKIntrospectionParserDelegate.m \
DKMessage.m \
DKMethod.m \
DKMethodCall.m \
DKNonAutoInvalidatingPort.m \
DKNotificationCenter.m \
DKObjectPathNode.m \
DKOutgoingProxy.m \
DKPort.m \
DKPortNameServer.m \
DKProperty.m \
DKPropertyMethod.m \
DKProxy.m \
DKSignal.m \
NSConnection+DBus.m
DBusKit_OBJCFLAGS += $(WARN_FLAGS)
# Treat warnings as errors unless someone chooses to ignore them.
ifneq ($(nonstrict), yes)
DBusKit_OBJCFLAGS += -Werror
endif
LIBRARIES_DEPEND_UPON = $(FND_LIBS) $(OBJC_LIBS)
-include ../GNUmakefile.preamble
include $(GNUSTEP_MAKEFILES)/framework.make
-include GNUmakefile.postamble
|