mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 12:00:45 +00:00
Change GNUSTEP_MAKEFILE_DIR to GNUSTEP_MAKEFILES
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@2738 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
f59806d975
commit
e476d477b3
7 changed files with 22 additions and 22 deletions
|
@ -11,12 +11,12 @@ Wed Feb 4 09:11:49 1998 Adam Fedor <fedor@ultra.doc.com>
|
|||
|
||||
* Changes to allow library to be compiled in a GNUstep package
|
||||
without having previous libraries installed.
|
||||
* GNUmakefile (GNUSTEP_MAKEFILE_DIR): New variable. Use it to
|
||||
* GNUmakefile (GNUSTEP_MAKEFILES): New variable. Use it to
|
||||
include makefiles.
|
||||
(SUBPROJECTS): Remove Testing.
|
||||
* GNUmakefile.postamble (before-all): Add header-links depend.
|
||||
(header-links): New target to link in various header dirs.
|
||||
* Documentation/GNUmakefile (GNUSTEP_MAKEFILE_DIR): New
|
||||
* Documentation/GNUmakefile (GNUSTEP_MAKEFILES): New
|
||||
variable. Use it to include makefiles.
|
||||
* Images/GNUmakefile: Likewise.
|
||||
* Model/GNUmakefile: Likewise.
|
||||
|
|
|
@ -27,9 +27,9 @@
|
|||
|
||||
GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT)
|
||||
|
||||
GNUSTEP_MAKEFILE_DIR = $(GNUSTEP_SYSTEM_ROOT)/Makefiles
|
||||
GNUSTEP_MAKEFILES = $(GNUSTEP_SYSTEM_ROOT)/Makefiles
|
||||
|
||||
include $(GNUSTEP_MAKEFILE_DIR)/common.make
|
||||
include $(GNUSTEP_MAKEFILES)/common.make
|
||||
|
||||
#
|
||||
# The list of subproject directories
|
||||
|
@ -38,6 +38,6 @@ SUBPROJECTS = Model Source Images Tools
|
|||
|
||||
-include GNUmakefile.preamble
|
||||
|
||||
include $(GNUSTEP_MAKEFILE_DIR)/aggregate.make
|
||||
include $(GNUSTEP_MAKEFILES)/aggregate.make
|
||||
|
||||
-include GNUmakefile.postamble
|
||||
|
|
|
@ -23,9 +23,9 @@
|
|||
|
||||
GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT)
|
||||
|
||||
GNUSTEP_MAKEFILE_DIR = $(GNUSTEP_SYSTEM_ROOT)/Makefiles
|
||||
GNUSTEP_MAKEFILES = $(GNUSTEP_SYSTEM_ROOT)/Makefiles
|
||||
|
||||
include $(GNUSTEP_MAKEFILE_DIR)/common.make
|
||||
include $(GNUSTEP_MAKEFILES)/common.make
|
||||
|
||||
include ../Version
|
||||
|
||||
|
@ -60,6 +60,6 @@ nsmapping.strings
|
|||
|
||||
# We don't actually build anything in this directory so
|
||||
# just include the common makefile rules
|
||||
include $(GNUSTEP_MAKEFILE_DIR)/rules.make
|
||||
include $(GNUSTEP_MAKEFILES)/rules.make
|
||||
|
||||
-include GNUmakefile.postamble
|
||||
|
|
|
@ -24,9 +24,9 @@
|
|||
|
||||
GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT)
|
||||
|
||||
GNUSTEP_MAKEFILE_DIR = $(GNUSTEP_SYSTEM_ROOT)/Makefiles
|
||||
GNUSTEP_MAKEFILES = $(GNUSTEP_SYSTEM_ROOT)/Makefiles
|
||||
|
||||
include $(GNUSTEP_MAKEFILE_DIR)/common.make
|
||||
include $(GNUSTEP_MAKEFILES)/common.make
|
||||
|
||||
LIBRARY_NAME = libgmodel
|
||||
|
||||
|
@ -73,8 +73,8 @@ LIBRARIES_DEPEND_UPON = -lFoundationExt $(FND_LIBS) $(GUI_LIBS) \
|
|||
|
||||
-include GNUmakefile.local
|
||||
|
||||
include $(GNUSTEP_MAKEFILE_DIR)/library.make
|
||||
include $(GNUSTEP_MAKEFILE_DIR)/tool.make
|
||||
include $(GNUSTEP_MAKEFILE_DIR)/application.make
|
||||
include $(GNUSTEP_MAKEFILES)/library.make
|
||||
include $(GNUSTEP_MAKEFILES)/tool.make
|
||||
include $(GNUSTEP_MAKEFILES)/application.make
|
||||
|
||||
-include GNUmakefile.postamble
|
||||
|
|
|
@ -26,9 +26,9 @@
|
|||
|
||||
GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT)
|
||||
|
||||
GNUSTEP_MAKEFILE_DIR = $(GNUSTEP_SYSTEM_ROOT)/Makefiles
|
||||
GNUSTEP_MAKEFILES = $(GNUSTEP_SYSTEM_ROOT)/Makefiles
|
||||
|
||||
include $(GNUSTEP_MAKEFILE_DIR)/common.make
|
||||
include $(GNUSTEP_MAKEFILES)/common.make
|
||||
|
||||
include ../Version
|
||||
|
||||
|
@ -198,6 +198,6 @@ AppKit/DPSOperators.h
|
|||
|
||||
-include GNUmakefile.local
|
||||
|
||||
include $(GNUSTEP_MAKEFILE_DIR)/library.make
|
||||
include $(GNUSTEP_MAKEFILES)/library.make
|
||||
|
||||
-include GNUmakefile.postamble
|
||||
|
|
|
@ -25,9 +25,9 @@
|
|||
# If not, write to the Free Software Foundation,
|
||||
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
GNUSTEP_MAKEFILE_DIR = $(GNUSTEP_SYSTEM_ROOT)/Makefiles
|
||||
GNUSTEP_MAKEFILES = $(GNUSTEP_SYSTEM_ROOT)/Makefiles
|
||||
|
||||
include $(GNUSTEP_MAKEFILE_DIR)/common.make
|
||||
include $(GNUSTEP_MAKEFILES)/common.make
|
||||
|
||||
# The application to be compiled
|
||||
TEST_TOOL_NAME = testpb
|
||||
|
@ -37,6 +37,6 @@ testpb_OBJC_FILES = testpb.m
|
|||
|
||||
-include GNUmakefile.preamble
|
||||
|
||||
include $(GNUSTEP_MAKEFILE_DIR)/test-tool.make
|
||||
include $(GNUSTEP_MAKEFILES)/test-tool.make
|
||||
|
||||
-include GNUmakefile.postamble
|
||||
|
|
|
@ -27,9 +27,9 @@
|
|||
|
||||
GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT)
|
||||
|
||||
GNUSTEP_MAKEFILE_DIR = $(GNUSTEP_SYSTEM_ROOT)/Makefiles
|
||||
GNUSTEP_MAKEFILES = $(GNUSTEP_SYSTEM_ROOT)/Makefiles
|
||||
|
||||
include $(GNUSTEP_MAKEFILE_DIR)/common.make
|
||||
include $(GNUSTEP_MAKEFILES)/common.make
|
||||
|
||||
# The application to be compiled
|
||||
TOOL_NAME = gpbs
|
||||
|
@ -41,6 +41,6 @@ gpbs_OBJC_FILES = gpbs.m
|
|||
|
||||
-include GNUmakefile.local
|
||||
|
||||
include $(GNUSTEP_MAKEFILE_DIR)/tool.make
|
||||
include $(GNUSTEP_MAKEFILES)/tool.make
|
||||
|
||||
-include GNUmakefile.postamble
|
||||
|
|
Loading…
Reference in a new issue