mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 22:00:49 +00:00
Moved the GNUSTEP_MAKEFILES definition to the top of the file.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@2743 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
ff3343d4f4
commit
0cf69b961d
2 changed files with 10 additions and 5 deletions
|
@ -1,3 +1,8 @@
|
|||
1998-02-09 Ovidiu Predescu <ovidiu@net-community.com>
|
||||
|
||||
* common.make (GNUSTEP_MAKEFILES): Moved the definition to the top
|
||||
of the file because it is needed to include several files.
|
||||
|
||||
Mon Feb 9 00:23:33 1998 Ovidiu Predescu <ovidiu@net-community.com>
|
||||
|
||||
* brain.make: Added the initial support for the integration of Boehm's
|
||||
|
|
10
common.make
10
common.make
|
@ -40,6 +40,11 @@ WHICH_LIB_SCRIPT = $(GNUSTEP_MAKEFILES)/$(GNUSTEP_HOST_CPU)/$(GNUSTEP_HOST_OS)/w
|
|||
LD_LIB_PATH_SCRIPT = $(GNUSTEP_MAKEFILES)/ld_lib_path.sh
|
||||
TRANSFORM_PATHS_SCRIPT = $(GNUSTEP_MAKEFILES)/transform_paths.sh
|
||||
|
||||
# Take the makefiles from the system root
|
||||
ifeq ($(GNUSTEP_MAKEFILES),)
|
||||
GNUSTEP_MAKEFILES = $(GNUSTEP_SYSTEM_ROOT)/Makefiles
|
||||
endif
|
||||
|
||||
#
|
||||
# Determine the compilation host and target
|
||||
#
|
||||
|
@ -88,11 +93,6 @@ GNUSTEP_TARGET_LIBRARIES = $(GNUSTEP_LIBRARIES_ROOT)/$(GNUSTEP_TARGET_DIR)
|
|||
GNUSTEP_LIBRARIES = $(GNUSTEP_TARGET_LIBRARIES)/$(LIBRARY_COMBO)
|
||||
GNUSTEP_RESOURCES = $(GNUSTEP_LIBRARIES_ROOT)/Resources
|
||||
|
||||
# Take the makefiles from the system root
|
||||
ifeq ($(GNUSTEP_MAKEFILES),)
|
||||
GNUSTEP_MAKEFILES = $(GNUSTEP_SYSTEM_ROOT)/Makefiles
|
||||
endif
|
||||
|
||||
# The default name of the makefile to be used in recursive invocations of make
|
||||
ifeq ($(MAKEFILE_NAME),)
|
||||
MAKEFILE_NAME = GNUmakefile
|
||||
|
|
Loading…
Reference in a new issue