mirror of
https://github.com/darlinghq/darling-dbuskit.git
synced 2024-11-27 06:00:38 +00:00
c3bc3287dd
ability to customize the unboxing of objects. * Source/DKEndpoint.m Source/DKMethod.m Source/DKPort.m: Compile fixes for clang. * Source/DKOutgoingProxy.[mh] Source/GNUmakefile: Add stub implementation for outgoing proxies. * Source/DKProxy.m: Add method to distinguish outgoing and incoming proxies. * Source/Tests/TestDKProxy.m: Fix runtime.h include. * Source/Tests/TestDKArgument.m: Add test for custom unboxing methods. * Source/config.h.in config.make.in configure.ac GNUmakefile.postamble: Update configure script and paraphernalia to check for advanced runtime features. * configure: Regenerate Finish implementation of (un-)marshalling values between NSInvocation and D-Bus messages. More flexible scheme for unboxing values. Various smaller fixes. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/dbuskit/trunk@30844 72102866-910b-0410-8b05-ffd578937521
53 lines
972 B
Plaintext
53 lines
972 B
Plaintext
#
|
|
# GNUmakefile.postamble for DBusKit
|
|
#
|
|
|
|
# Things to do before compiling
|
|
# before-all::
|
|
|
|
# Things to do after compiling
|
|
#after-all::
|
|
|
|
# Things to do before installing
|
|
# before-install::
|
|
|
|
# Things to do after installing
|
|
# after-install::
|
|
|
|
# Things to do before uninstalling
|
|
# before-uninstall::
|
|
|
|
# Things to do after uninstalling
|
|
# after-uninstall::
|
|
|
|
# Things to do before cleaning
|
|
# before-clean::
|
|
|
|
# Things to do after cleaning
|
|
after-clean::
|
|
@-$(RM) -rf DBusKit.bundle
|
|
@-$(RM) -rf DBusKit.framework
|
|
@-$(RM) -rf derived_src
|
|
@-$(RM) config.make
|
|
@-$(RM) Source/config.h
|
|
|
|
# Things to do before distcleaning
|
|
# before-distclean::
|
|
|
|
# Things to do after distcleaning
|
|
after-distclean::
|
|
@-$(RM) config.log config.status config.make Source/config.h
|
|
@-$(RM) -rf autom4te.cache
|
|
|
|
# Things to do before checking
|
|
# before-check::
|
|
|
|
# Things to do after checking
|
|
# after-check::
|
|
|
|
|
|
# Rule to generate configuration data:
|
|
|
|
config.make: config.make.in Source/config.h.in
|
|
./configure
|