2010-05-09 18:19:11 +00:00
|
|
|
#
|
|
|
|
# GNUmakefile for DBusKit
|
|
|
|
#
|
|
|
|
|
2010-09-10 13:56:59 +00:00
|
|
|
ifeq ($(GNUSTEP_MAKEFILES),)
|
|
|
|
GNUSTEP_MAKEFILES := $(shell gnustep-config --variable=GNUSTEP_MAKEFILES 2>/dev/null)
|
|
|
|
ifeq ($(GNUSTEP_MAKEFILES),)
|
|
|
|
$(warning )
|
|
|
|
$(warning Unable to obtain GNUSTEP_MAKEFILES setting from gnustep-config!)
|
|
|
|
$(warning Perhaps gnustep-make is not properly installed,)
|
|
|
|
$(warning so gnustep-config is not in your PATH.)
|
|
|
|
$(warning )
|
|
|
|
$(warning Your PATH is currently $(PATH))
|
|
|
|
$(warning )
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(GNUSTEP_MAKEFILES),)
|
|
|
|
$(error You need to set GNUSTEP_MAKEFILES before compiling!)
|
|
|
|
endif
|
|
|
|
|
2010-05-09 18:19:11 +00:00
|
|
|
include $(GNUSTEP_MAKEFILES)/common.make
|
|
|
|
|
|
|
|
# config.make will be generated by configure (see GNUmakefile.postamble)
|
|
|
|
-include config.make
|
2010-08-16 13:47:57 +00:00
|
|
|
-include GNUmakefile.preamble
|
2010-05-09 18:19:11 +00:00
|
|
|
|
2011-02-22 10:40:57 +00:00
|
|
|
|
|
|
|
PACKAGE_NAME = dbuskit
|
2011-05-12 20:32:15 +00:00
|
|
|
PACKAGE_VERSION = 0.2
|
2011-02-22 10:40:57 +00:00
|
|
|
SVN_MODULE_NAME = dbuskit
|
|
|
|
SVN_BASE_URL = svn+ssh://svn.gna.org/svn/gnustep/libs
|
|
|
|
|
2010-07-14 10:46:23 +00:00
|
|
|
#No parallel building
|
|
|
|
GNUSTEP_USE_PARALLEL_AGGREGATE=no
|
2010-05-09 18:19:11 +00:00
|
|
|
|
2010-07-14 10:46:23 +00:00
|
|
|
#DBusKit Framework
|
2010-08-14 11:39:34 +00:00
|
|
|
SUBPROJECTS = Source \
|
2010-08-20 12:05:02 +00:00
|
|
|
Tools
|
2010-05-09 18:19:11 +00:00
|
|
|
|
2010-08-20 12:05:02 +00:00
|
|
|
ifneq ($(strip `which makeinfo`),)
|
|
|
|
ifneq ($(strip `which texi2pdf`),)
|
|
|
|
SUBPROJECTS += Documentation
|
|
|
|
endif
|
|
|
|
endif
|
2010-05-09 18:19:11 +00:00
|
|
|
#
|
|
|
|
# Makefiles
|
|
|
|
#
|
|
|
|
-include GNUmakefile.preamble
|
2010-07-14 10:46:23 +00:00
|
|
|
|
2010-05-09 18:19:11 +00:00
|
|
|
|
|
|
|
ifeq ($(test), yes)
|
2010-07-14 10:46:23 +00:00
|
|
|
#Test Bundle
|
|
|
|
SUBPROJECTS += Tests
|
2010-05-09 18:19:11 +00:00
|
|
|
endif
|
|
|
|
|
2010-07-14 10:46:23 +00:00
|
|
|
include $(GNUSTEP_MAKEFILES)/aggregate.make
|
2010-05-09 18:19:11 +00:00
|
|
|
-include GNUmakefile.postamble
|