mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 22:00:49 +00:00
Include makefiles from $(GNUSTEP_MAKEFILES)/Additional/*.make
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@8874 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
e6e17b6fd3
commit
bb29b35d67
1 changed files with 13 additions and 1 deletions
14
common.make
14
common.make
|
@ -78,9 +78,21 @@ endif
|
|||
include $(GNUSTEP_MAKEFILES)/$(GNUSTEP_TARGET_DIR)/config.make
|
||||
|
||||
#
|
||||
# Determine the core libraries
|
||||
# Get flags/config options for core libraries
|
||||
#
|
||||
|
||||
# First, work out precisely library combos etc
|
||||
include $(GNUSTEP_MAKEFILES)/brain.make
|
||||
# Then include custom makefiles with flags/config options
|
||||
# This is meant to be used by the core libraries to override loading
|
||||
# of the system makefiles from $(GNUSTEP_MAKEFILES)/Additional/*.make
|
||||
# with their local copy (presumable more up-to-date)
|
||||
ifneq ($(GNUSTEP_LOCAL_ADDITIONAL_MAKEFILES),)
|
||||
include $(GNUSTEP_LOCAL_ADDITIONAL_MAKEFILES)
|
||||
endif
|
||||
# Then include makefiles with flags/config options installed by the
|
||||
# libraries themselves
|
||||
-include $(GNUSTEP_MAKEFILES)/Additional/*.make
|
||||
|
||||
#
|
||||
# Determine target specific settings
|
||||
|
|
Loading…
Reference in a new issue