Do not include rules.make if RULES_MAKE_LOADED is not empty

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@10383 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2001-07-10 09:45:34 +00:00
parent 68adbf8836
commit e009fab48a
19 changed files with 38 additions and 0 deletions

View file

@ -27,7 +27,9 @@ AGGREGATE_MAKE_LOADED=yes
#
# Include in the common makefile rules
#
ifeq ($(RULES_MAKE_LOADED),)
include $(GNUSTEP_MAKEFILES)/rules.make
endif
#
# The list of directory names with the subprojects

View file

@ -27,7 +27,9 @@ APPLICATION_MAKE_LOADED=yes
#
# Include in the common makefile rules
#
ifeq ($(RULES_MAKE_LOADED),)
include $(GNUSTEP_MAKEFILES)/rules.make
endif
#
# The name of the application is in the APP_NAME variable.

View file

@ -27,7 +27,9 @@ BUNDLE_MAKE_LOADED=yes
#
# Include in the common makefile rules
#
ifeq ($(RULES_MAKE_LOADED),)
include $(GNUSTEP_MAKEFILES)/rules.make
endif
# The name of the bundle is in the BUNDLE_NAME variable.
# The list of bundle resource file are in xxx_RESOURCE_FILES

View file

@ -34,7 +34,9 @@ CTOOL_NAME:=$(strip $(CTOOL_NAME))
#
# Include in the common makefile rules
#
ifeq ($(RULES_MAKE_LOADED),)
include $(GNUSTEP_MAKEFILES)/rules.make
endif
# This is the directory where the ctools get installed. If you don't specify a
# directory they will get installed in the GNUstep system root.

View file

@ -31,7 +31,9 @@ DOCUMENTATION_MAKE_LOADED=yes
#
# Include in the common makefile rules
#
ifeq ($(RULES_MAKE_LOADED),)
include $(GNUSTEP_MAKEFILES)/rules.make
endif
#
# The names of the documents are in the DOCUMENT_NAME variable.

View file

@ -26,7 +26,9 @@ FRAMEWORK_MAKE_LOADED=yes
#
# Include in the common makefile rules
#
ifeq ($(RULES_MAKE_LOADED),)
include $(GNUSTEP_MAKEFILES)/rules.make
endif
# The name of the bundle is in the FRAMEWORK_NAME variable.
# The list of framework resource files are in xxx_RESOURCE_FILES

View file

@ -29,7 +29,9 @@ GSWAPP_MAKE_LOADED=yes
#
# Include in the common makefile rules
#
ifeq ($(RULES_MAKE_LOADED),)
include $(GNUSTEP_MAKEFILES)/rules.make
endif
GNUSTEP_GSWAPPS=$(GNUSTEP_INSTALLATION_DIR)/GSWApps

View file

@ -28,7 +28,9 @@ GSWBUNDLE_MAKE_LOADED=yes
#
# Include in the common makefile rules
#
ifeq ($(RULES_MAKE_LOADED),)
include $(GNUSTEP_MAKEFILES)/rules.make
endif
GSWBUNDLE_LD= $(BUNDLE_LD)
GSWBUNDLE_LDFLAGS = $(BUNDLE_LDFLAGS)

View file

@ -34,7 +34,9 @@ JAVA_TOOL_MAKE_LOADED = yes
JAVA_TOOL_NAME:=$(strip $(JAVA_TOOL_NAME))
ifeq ($(RULES_MAKE_LOADED),)
include $(GNUSTEP_MAKEFILES)/rules.make
endif
ifeq ($(INTERNAL_java_tool_NAME),)

View file

@ -59,7 +59,9 @@ JAVA_PACKAGE_NAME:=$(strip $(JAVA_PACKAGE_NAME))
#
# Include in the common makefile rules
#
ifeq ($(RULES_MAKE_LOADED),)
include $(GNUSTEP_MAKEFILES)/rules.make
endif
ifeq ($(INTERNAL_java_package_NAME),)

View file

@ -27,7 +27,9 @@ LIBRARY_MAKE_LOADED=yes
#
# Include in the common makefile rules
#
ifeq ($(RULES_MAKE_LOADED),)
include $(GNUSTEP_MAKEFILES)/rules.make
endif
#
# The name of the library is in the LIBRARY_NAME variable.

View file

@ -34,7 +34,9 @@ OBJC_PROGRAM_NAME:=$(strip $(OBJC_PROGRAM_NAME))
#
# Include in the common makefile rules
#
ifeq ($(RULES_MAKE_LOADED),)
include $(GNUSTEP_MAKEFILES)/rules.make
endif
ifeq ($(INTERNAL_objc_program_NAME),)

View file

@ -28,7 +28,9 @@ PALETTE_MAKE_LOADED=yes
#
# Include in the common makefile rules
#
ifeq ($(RULES_MAKE_LOADED),)
include $(GNUSTEP_MAKEFILES)/rules.make
endif
# The name of the palette is in the PALETTE_NAME variable.
# The list of palette resource file are in xxx_RESOURCE_FILES

View file

@ -27,7 +27,9 @@ SERVICE_MAKE_LOADED=yes
#
# Include in the common makefile rules
#
ifeq ($(RULES_MAKE_LOADED),)
include $(GNUSTEP_MAKEFILES)/rules.make
endif
#
# The name of the service is in the SERVICE_NAME variable.

View file

@ -26,7 +26,9 @@ SUBPROJECT_MAKE_LOADED=yes
#
# Include in the common makefile rules
#
ifeq ($(RULES_MAKE_LOADED),)
include $(GNUSTEP_MAKEFILES)/rules.make
endif
#
# The names of the subproject is in the SUBPROJECT_NAME variable.

View file

@ -28,7 +28,9 @@ TEST_APP_NAME:=$(strip $(TEST_APP_NAME))
#
# Include in the common makefile rules
#
ifeq ($(RULES_MAKE_LOADED),)
include $(GNUSTEP_MAKEFILES)/rules.make
endif
# building of test applications calls the application.make rules
ifeq ($(INTERNAL_app_NAME),)

View file

@ -29,7 +29,9 @@ TEST_LIBRARY_NAME:=$(strip $(TEST_LIBRARY_NAME))
#
# Include in the common makefile rules
#
ifeq ($(RULES_MAKE_LOADED),)
include $(GNUSTEP_MAKEFILES)/rules.make
endif
#
# The three main components to perform a test in the framework

View file

@ -28,7 +28,9 @@ TEST_TOOL_NAME:=$(strip $(TEST_TOOL_NAME))
#
# Include in the common makefile rules
#
ifeq ($(RULES_MAKE_LOADED),)
include $(GNUSTEP_MAKEFILES)/rules.make
endif
# building of test tools calls the tool.make rules
ifeq ($(INTERNAL_tool_NAME),)

View file

@ -34,7 +34,9 @@ TOOL_NAME:=$(strip $(TOOL_NAME))
#
# Include in the common makefile rules
#
ifeq ($(RULES_MAKE_LOADED),)
include $(GNUSTEP_MAKEFILES)/rules.make
endif
# This is the directory where the tools get installed. If you don't specify a
# directory they will get installed in the GNUstep Local Root.