Some minor variables for frameworks and bundles moved from rules.make to common.make

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@12307 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2002-01-30 19:51:21 +00:00
parent 6e37bb6cc9
commit d831fffd51
3 changed files with 16 additions and 17 deletions

View file

@ -1,3 +1,8 @@
Wed Jan 30 17:54:45 2002 Nicola Pero <n.pero@mi.flashnet.it>
* rules.make (BUNDLE_EXTENSION, CURRENT_VERSION_NAME,
DEPLOY_WITH_CURRENT_VERSION): Moved to common.make.
Wed Jan 30 17:53:03 2002 Nicola Pero <n.pero@mi.flashnet.it>
* rules.make: Always include Instance/rules.make, even if in the

View file

@ -460,6 +460,16 @@ ifeq ($(JAVADOC),)
JAVADOC = $(JAVA_HOME)/bin/javadoc
endif
#
# Common variables - default values
#
# Because this file is included at the beginning of the user's
# GNUmakefile, the user can override these variables by setting them
# in the GNUmakefile.
BUNDLE_EXTENSION = .bundle
CURRENT_VERSION_NAME = A
DEPLOY_WITH_CURRENT_VERSION = yes
# We want total control over GNUSTEP_MAKE_INSTANCE_INVOCATION.
# GNUSTEP_MAKE_INSTANCE_INVOCATION determines wheter it's a Master or
# an Instance invocation. Whenever we run a submake, we want it to be

View file

@ -59,23 +59,7 @@ ifneq ($(INSTALL_AS_GROUP),)
endif
#
# The bundle extension (default is .bundle) is defined by BUNDLE_EXTENSION.
#
ifeq ($(strip $(BUNDLE_EXTENSION)),)
BUNDLE_EXTENSION = .bundle
endif
#
# Common variables for frameworks
#
ifeq ($(CURRENT_VERSION_NAME),)
CURRENT_VERSION_NAME := A
endif
ifeq ($(DEPLOY_WITH_CURRENT_VERSION),)
DEPLOY_WITH_CURRENT_VERSION := yes
endif
# FIXME - what to do with these
FRAMEWORK_NAME := $(strip $(FRAMEWORK_NAME))
FRAMEWORK_DIR_NAME := $(FRAMEWORK_NAME:=.framework)
FRAMEWORK_VERSION_DIR_NAME := $(FRAMEWORK_DIR_NAME)/Versions/$(CURRENT_VERSION_NAME)