mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
Broken into Master and Instance
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@12649 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
3f4a19c7c3
commit
4960de3816
2 changed files with 15 additions and 644 deletions
362
gswapp.make
362
gswapp.make
|
@ -1,14 +1,11 @@
|
|||
#
|
||||
# application.make
|
||||
# gswapp.make
|
||||
#
|
||||
# Makefile rules to build GNUstep-based applications.
|
||||
# Makefile rules to build GNUstep web based applications.
|
||||
#
|
||||
# Copyright (C) 1997 Free Software Foundation, Inc.
|
||||
# Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
#
|
||||
# Author: Manuel Guesdon <mguesdon@sbuilders.com>
|
||||
# Based on application.make by Ovidiu Predescu <ovidiu@net-community.com>
|
||||
# Based on gswapp.make by Helge Hess, MDlink online service center GmbH.
|
||||
# Based on the original version by Scott Christley.
|
||||
# Author: Nicola Pero <nicola@brainstorm.co.uk>
|
||||
#
|
||||
# This file is part of the GNUstep Makefile Package.
|
||||
#
|
||||
|
@ -22,355 +19,12 @@
|
|||
# If not, write to the Free Software Foundation,
|
||||
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
# prevent multiple inclusions
|
||||
ifeq ($(GSWAPP_MAKE_LOADED),)
|
||||
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
|
||||
|
||||
#
|
||||
# The name of the application is in the GSWAPP_NAME variable.
|
||||
# The list of languages the app is localized in are in xxx_LANGUAGES <==
|
||||
# The list of application resource file are in xxx_RESOURCE_FILES
|
||||
# The list of localized application resource file are in
|
||||
# xxx_LOCALIZED_RESOURCE_FILES <==
|
||||
# The list of application resource directories are in xxx_RESOURCE_DIRS
|
||||
# The list of application web server resource directories are in
|
||||
# xxx_WEBSERVER_RESOURCE_DIRS <==
|
||||
# The list of localized application web server resource directories are in
|
||||
# xxx_LOCALIZED_WEBSERVER_RESOURCE_DIRS
|
||||
# where xxx is the application name <==
|
||||
|
||||
GSWAPP_NAME:=$(strip $(GSWAPP_NAME))
|
||||
|
||||
# Determine the application directory extension
|
||||
ifeq ($(profile), yes)
|
||||
GSWAPP_EXTENSION=profile
|
||||
else
|
||||
ifeq ($(debug), yes)
|
||||
GSWAPP_EXTENSION=debug
|
||||
else
|
||||
GSWAPP_EXTENSION=gswa
|
||||
endif
|
||||
endif
|
||||
|
||||
ifeq ($(INTERNAL_gswapp_NAME),)
|
||||
# This part gets included by the first invoked make process.
|
||||
internal-all:: $(GSWAPP_NAME:=.all.gswapp.variables)
|
||||
|
||||
internal-install:: $(GSWAPP_NAME:=.install.gswapp.variables)
|
||||
|
||||
internal-uninstall:: $(GSWAPP_NAME:=.uninstall.gswapp.variables)
|
||||
|
||||
internal-clean:: $(GSWAPP_NAME:=.clean.gswapp.subprojects)
|
||||
rm -rf $(GNUSTEP_OBJ_DIR)
|
||||
ifeq ($(OBJC_COMPILER), NeXT)
|
||||
rm -f *.iconheader
|
||||
for f in *.$(GSWAPP_EXTENSION); do \
|
||||
rm -f $$f/`basename $$f .$(GSWAPP_EXTENSION)`; \
|
||||
done
|
||||
else
|
||||
ifeq ($(GNUSTEP_FLATTENED),)
|
||||
rm -rf *.$(GSWAPP_EXTENSION)/$(GNUSTEP_TARGET_LDIR)
|
||||
else
|
||||
rm -rf *.$(GSWAPP_EXTENSION)
|
||||
endif
|
||||
endif
|
||||
|
||||
internal-distclean:: $(GSWAPP_NAME:=.distclean.gswapp.subprojects)
|
||||
rm -rf shared_obj static_obj shared_debug_obj shared_profile_obj \
|
||||
static_debug_obj static_profile_obj shared_profile_debug_obj \
|
||||
static_profile_debug_obj *.gswa *.debug *.profile *.iconheader
|
||||
|
||||
$(GSWAPP_NAME):
|
||||
@$(MAKE) -f $(MAKEFILE_NAME) --no-print-directory \
|
||||
$@.all.gswapp.variables
|
||||
|
||||
ifeq ($(GNUSTEP_INSTANCE),)
|
||||
include $(GNUSTEP_MAKEFILES)/Master/gswapp.make
|
||||
else
|
||||
|
||||
.PHONY: internal-gswapp-all \
|
||||
internal-gswapp-install \
|
||||
internal-gswapp-uninstall \
|
||||
before-$(TARGET)-all \
|
||||
after-$(TARGET)-all \
|
||||
gswapp-components \
|
||||
gswapp-webresource-dir \
|
||||
gswapp-webresource-files \
|
||||
gswapp-localized-webresource-files \
|
||||
gswapp-resource-dir \
|
||||
gswapp-resource-files \
|
||||
gswapp-localized-resource-files
|
||||
|
||||
# Libraries that go before the WO libraries
|
||||
ALL_GSW_LIBS = \
|
||||
$(shell $(WHICH_LIB_SCRIPT) \
|
||||
$(ALL_LIB_DIRS) \
|
||||
$(ADDITIONAL_GSW_LIBS) $(AUXILIARY_GSW_LIBS) $(GSW_LIBS) \
|
||||
$(ADDITIONAL_TOOL_LIBS) $(AUXILIARY_TOOL_LIBS) \
|
||||
$(FND_LIBS) $(ADDITIONAL_OBJC_LIBS) $(AUXILIARY_OBJC_LIBS) \
|
||||
$(OBJC_LIBS) $(SYSTEM_LIBS) $(TARGET_SYSTEM_LIBS) \
|
||||
debug=$(debug) profile=$(profile) shared=$(shared) \
|
||||
libext=$(LIBEXT) shared_libext=$(SHARED_LIBEXT))
|
||||
|
||||
|
||||
# Don't include these definitions the first time make is invoked. This part is
|
||||
# included when make is invoked the second time from the %.build rule (see
|
||||
# rules.make).
|
||||
GSWAPP_DIR_NAME = $(INTERNAL_gswapp_NAME:=.$(GSWAPP_EXTENSION))
|
||||
GSWAPP_RESOURCE_DIRS = $(foreach d, $(RESOURCE_DIRS), $(GSWAPP_DIR_NAME)/Resources/$(d))
|
||||
GSWAPP_WEBSERVER_RESOURCE_DIRS = $(foreach d, $(WEBSERVER_RESOURCE_DIRS), $(GSWAPP_DIR_NAME)/WebServerResources/$(d))
|
||||
ifeq ($(strip $(LANGUAGES)),)
|
||||
override LANGUAGES="English"
|
||||
endif
|
||||
|
||||
# Support building NeXT applications
|
||||
ifneq ($(OBJC_COMPILER), NeXT)
|
||||
GSWAPP_FILE = \
|
||||
$(GSWAPP_DIR_NAME)/$(GNUSTEP_TARGET_LDIR)/$(INTERNAL_gswapp_NAME)$(EXEEXT)
|
||||
else
|
||||
GSWAPP_FILE = $(GSWAPP_DIR_NAME)/$(INTERNAL_gswapp_NAME)$(EXEEXT)
|
||||
endif
|
||||
|
||||
#
|
||||
# Internal targets
|
||||
#
|
||||
|
||||
$(GSWAPP_FILE): $(OBJ_FILES_TO_LINK)
|
||||
$(LD) $(ALL_LDFLAGS) -o $(LDOUT)$@ $(OBJ_FILES_TO_LINK) \
|
||||
$(ALL_GSW_LIBS)
|
||||
|
||||
ifeq ($(OBJC_COMPILER), NeXT)
|
||||
@$(TRANSFORM_PATHS_SCRIPT) $(subst -L,,$(ALL_LIB_DIRS)) \
|
||||
>$(GSWAPP_DIR_NAME)/library_paths.openapp
|
||||
# This is a hack for OPENSTEP systems to remove the iconheader file
|
||||
# automatically generated by the makefile package.
|
||||
rm -f $(INTERNAL_gswapp_NAME).iconheader
|
||||
else
|
||||
@$(TRANSFORM_PATHS_SCRIPT) $(subst -L,,$(ALL_LIB_DIRS)) \
|
||||
>$(GSWAPP_DIR_NAME)/$(GNUSTEP_TARGET_LDIR)/library_paths.openapp
|
||||
endif
|
||||
|
||||
#
|
||||
# Compilation targets
|
||||
#
|
||||
ifeq ($(OBJC_COMPILER), NeXT)
|
||||
internal-gswapp-all:: \
|
||||
before-$(TARGET)-all \
|
||||
$(GNUSTEP_OBJ_DIR) $(GSWAPP_DIR_NAME) $(GSWAPP_FILE) \
|
||||
gswapp-components \
|
||||
gswapp-localized-webresource-files \
|
||||
gswapp-webresource-files \
|
||||
gswapp-localized-resource-files \
|
||||
gswapp-resource-files \
|
||||
$(GSWAPP_DIR_NAME)/$(GSWAPP_NAME).sh \
|
||||
after-$(TARGET)-all
|
||||
|
||||
before-$(TARGET)-all::
|
||||
|
||||
after-$(TARGET)-all::
|
||||
|
||||
$(INTERNAL_gswapp_NAME).iconheader:
|
||||
@(echo "F $(INTERNAL_gswapp_NAME).$(GSWAPP_EXTENSION) $(INTERNAL_gswapp_NAME) $(GSWAPP_EXTENSION)"; \
|
||||
echo "F $(INTERNAL_gswapp_NAME) $(INTERNAL_gswapp_NAME) app") >$@
|
||||
|
||||
$(GSWAPP_DIR_NAME):
|
||||
mkdir $@
|
||||
else
|
||||
|
||||
internal-gswapp-all:: \
|
||||
before-$(TARGET)-all $(GNUSTEP_OBJ_DIR) \
|
||||
$(GSWAPP_DIR_NAME)/$(GNUSTEP_TARGET_LDIR) $(GSWAPP_FILE) \
|
||||
gswapp-components \
|
||||
gswapp-localized-webresource-files \
|
||||
gswapp-webresource-files \
|
||||
gswapp-localized-resource-files \
|
||||
gswapp-resource-files \
|
||||
$(GSWAPP_DIR_NAME)/$(GSWAPP_NAME).sh \
|
||||
after-$(TARGET)-all
|
||||
|
||||
before-$(TARGET)-all::
|
||||
|
||||
after-$(TARGET)-all::
|
||||
|
||||
$(GSWAPP_DIR_NAME)/$(GNUSTEP_TARGET_LDIR):
|
||||
@$(MKDIRS) $(GSWAPP_DIR_NAME)/$(GNUSTEP_TARGET_LDIR)
|
||||
endif
|
||||
|
||||
ifeq ($(GSWAPP_NAME)_GEN_SCRIPT,yes) #<==
|
||||
$(GSWAPP_DIR_NAME)/$(GSWAPP_NAME).sh: $(GSWAPP_DIR_NAME)
|
||||
@(echo "#!/bin/sh"; \
|
||||
echo '# Automatically generated, do not edit!'; \
|
||||
echo '$${GNUSTEP_HOST_LDIR}/$(INTERNAL_gswapp_NAME) $$1 $$2 $$3 $$4 $$5 $$6 $$7 $$8') >$@
|
||||
chmod +x $@
|
||||
else
|
||||
$(GSWAPP_DIR_NAME)/$(GSWAPP_NAME).sh:
|
||||
|
||||
endif
|
||||
|
||||
gswapp-components:: $(GSWAPP_DIR_NAME)/Resources
|
||||
ifneq ($(strip $(COMPONENTS)),)
|
||||
@ echo "Linking components into the application wrapper..."; \
|
||||
cd $(GSWAPP_DIR_NAME)/Resources; \
|
||||
for component in $(COMPONENTS); do \
|
||||
if [ -d ../../$$component ]; then \
|
||||
$(LN_S) -f ../../$$component ./;\
|
||||
fi; \
|
||||
done; \
|
||||
echo "Linking localized components into the application wrapper..."; \
|
||||
for l in $(LANGUAGES); do \
|
||||
if [ -d ../../$$l.lproj ]; then \
|
||||
$(MKDIRS) $$l.lproj; \
|
||||
cd $$l.lproj; \
|
||||
for f in $(COMPONENTS); do \
|
||||
if [ -d ../../../$$l.lproj/$$f ]; then \
|
||||
$(LN_S) -f ../../../$$l.lproj/$$f .;\
|
||||
fi;\
|
||||
done;\
|
||||
cd ..; \
|
||||
fi;\
|
||||
done
|
||||
endif
|
||||
|
||||
gswapp-webresource-dir:: $(GSWAPP_WEBSERVER_RESOURCE_DIRS)
|
||||
ifneq ($(strip $(WEBSERVER_RESOURCE_DIRS)),)
|
||||
@ echo "Linking webserver Resource Dirs into the application wrapper..."; \
|
||||
cd $(GSWAPP_DIR_NAME)/Resources; \
|
||||
for dir in $(WEBSERVER_RESOURCE_DIRS); do \
|
||||
if [ -d ../../$$dir ]; then \
|
||||
$(LN_S) -f ../../$$dir ./;\
|
||||
fi; \
|
||||
done;
|
||||
endif
|
||||
|
||||
$(GSWAPP_WEBSERVER_RESOURCE_DIRS):
|
||||
#@$(MKDIRS) $(GSWAPP_WEBSERVER_RESOURCE_DIRS)
|
||||
|
||||
gswapp-webresource-files:: $(GSWAPP_DIR_NAME)/WebServerResources \
|
||||
gswapp-webresource-dir
|
||||
ifneq ($(strip $(WEBSERVER_RESOURCE_FILES)),)
|
||||
@echo "Linking webserver resources into the application wrapper..."; \
|
||||
cd $(GSWAPP_DIR_NAME)/WebServerResources; \
|
||||
for ff in $(WEBSERVER_RESOURCE_FILES); do \
|
||||
$(LN_S) -f ../../WebServerResources/$$ff .;\
|
||||
done
|
||||
endif
|
||||
|
||||
gswapp-localized-webresource-files:: $(GSWAPP_DIR_NAME)/WebServerResources gswapp-webresource-dir
|
||||
ifneq ($(strip $(LOCALIZED_WEBSERVER_RESOURCE_FILES)),)
|
||||
@ echo "Linking localized web resources into the application wrapper..."; \
|
||||
cd $(GSWAPP_DIR_NAME)/WebServerResources; \
|
||||
for l in $(LANGUAGES); do \
|
||||
if [ -d ../../WebServerResources/$$l.lproj ]; then \
|
||||
$(MKDIRS) $$l.lproj;\
|
||||
cd $$l.lproj; \
|
||||
for f in $(LOCALIZED_WEBSERVER_RESOURCE_FILES); do \
|
||||
if [ -f ../../../WebServerResources/$$l.lproj/$$f ]; then \
|
||||
if [ ! -r $$f ]; then \
|
||||
$(LN_S) ../../../WebServerResources/$$l.lproj/$$f $$f;\
|
||||
fi;\
|
||||
fi;\
|
||||
done;\
|
||||
cd ..; \
|
||||
else\
|
||||
echo "Warning - WebServerResources/$$l.lproj not found - ignoring";\
|
||||
fi;\
|
||||
done
|
||||
endif
|
||||
|
||||
gswapp-resource-dir:: $(GSWAPP_RESOURCE_DIRS)
|
||||
ifneq ($(strip $(RESOURCE_DIRS)),)
|
||||
@ echo "Linking Resource Dirs into the application wrapper..."; \
|
||||
cd $(GSWAPP_DIR_NAME)/Resources; \
|
||||
for dir in $(RESOURCE_DIRS); do \
|
||||
if [ -d ../../$$dir ]; then \
|
||||
$(LN_S) -f ../../$$dir ./;\
|
||||
fi; \
|
||||
done;
|
||||
endif
|
||||
|
||||
$(GSWAPP_RESOURCE_DIRS):
|
||||
#@$(MKDIRS) $(GSWAPP_RESOURCE_DIRS)
|
||||
|
||||
gswapp-resource-files:: $(GSWAPP_DIR_NAME)/Resources/Info-gnustep.plist \
|
||||
gswapp-resource-dir
|
||||
ifneq ($(strip $(RESOURCE_FILES)),)
|
||||
@ echo "Linking resources into the application wrapper..."; \
|
||||
cd $(GSWAPP_DIR_NAME)/Resources/; \
|
||||
for ff in $(RESOURCE_FILES); do \
|
||||
echo $$ff; \
|
||||
$(LN_S) -f ../../$$ff .;\
|
||||
done
|
||||
endif
|
||||
|
||||
gswapp-localized-resource-files:: $(GSWAPP_DIR_NAME)/Resources \
|
||||
gswapp-resource-dir
|
||||
ifneq ($(strip $(LOCALIZED_RESOURCE_FILES)),)
|
||||
@ echo "Linking localized resources into the application wrapper..."; \
|
||||
cd $(GSWAPP_DIR_NAME)/Resources; \
|
||||
for l in $(LANGUAGES); do \
|
||||
if [ -d ../../$$l.lproj ]; then
|
||||
$(MKDIRS) $$l.lproj; \
|
||||
cd $$l.lproj; \
|
||||
for f in $(LOCALIZED_RESOURCE_FILES); do \
|
||||
if [ -f ../../../$$l.lproj/$$f ]; then \
|
||||
echo $$l.lproj/$$ff; \
|
||||
$(LN_S) -f ../../../$$l.lproj/$$f .;\
|
||||
fi;\
|
||||
done;\
|
||||
cd ..; \
|
||||
else \
|
||||
echo "Warning - $$l.lproj not found - ignoring";\
|
||||
fi;\
|
||||
done
|
||||
endif
|
||||
|
||||
$(GSWAPP_DIR_NAME)/Resources/Info-gnustep.plist: $(GSWAPP_DIR_NAME)/Resources
|
||||
@(echo "{"; echo ' NOTE = "Automatically generated, do not edit!";'; \
|
||||
echo " NSExecutable = \"$(INTERNAL_gswapp_NAME)\";"; \
|
||||
echo " NSPrincipalClass = \"$(PRINCIPAL_CLASS)\";"; \
|
||||
if [ "$(HAS_GSWCOMPONENTS)" != "" ]; then \
|
||||
echo " HasGSWComponents = \"$(HAS_GSWCOMPONENTS)\";"; \
|
||||
fi; \
|
||||
if [ "$(MAIN_MODEL_FILE)" = "" ]; then \
|
||||
echo " NSMainNibFile = \"\";"; \
|
||||
else \
|
||||
echo " NSMainNibFile = \"$(subst .gmodel,,$(subst .gorm,,$(subst .nib,,$(MAIN_MODEL_FILE))))\";"; \
|
||||
fi; \
|
||||
if [ -r "$(INTERNAL_gswapp_NAME)Info.plist" ]; then \
|
||||
cat $(INTERNAL_gswapp_NAME)Info.plist; \
|
||||
fi; \
|
||||
if [ "$(GSWAPP_INFO_PLIST)" != "" ]; then \
|
||||
cat $(GSWAPP_INFO_PLIST); \
|
||||
fi; \
|
||||
echo "}") >$@
|
||||
|
||||
$(GSWAPP_DIR_NAME)/Resources:
|
||||
@$(MKDIRS) $@
|
||||
|
||||
$(GSWAPP_DIR_NAME)/WebServerResources:
|
||||
@$(MKDIRS) $@
|
||||
|
||||
internal-gswapp-install::
|
||||
@($(MKINSTALLDIRS) $(GNUSTEP_GSWAPPS); \
|
||||
rm -rf $(GNUSTEP_GSWAPPS)/$(GSWAPP_DIR_NAME); \
|
||||
$(TAR) ch --exclude=CVS --to-stdout $(GSWAPP_DIR_NAME) | (cd $(GNUSTEP_GSWAPPS); $(TAR) xf -))
|
||||
ifneq ($(CHOWN_TO),)
|
||||
$(CHOWN) -R $(CHOWN_TO) $(GNUSTEP_GSWAPPS)/$(GSWAPP_DIR_NAME)
|
||||
endif
|
||||
ifeq ($(strip),yes)
|
||||
$(STRIP) $(GNUSTEP_GSWAPPS)/$(GSWAPP_FILE)
|
||||
endif
|
||||
|
||||
internal-gswapp-uninstall::
|
||||
(cd $(GNUSTEP_GSWAPPS); rm -rf $(GSWAPP_DIR_NAME))
|
||||
|
||||
ifeq ($(GNUSTEP_TYPE),gswapp)
|
||||
include $(GNUSTEP_MAKEFILES)/Instance/gswapp.make
|
||||
endif
|
||||
|
||||
endif
|
||||
|
|
297
gswbundle.make
297
gswbundle.make
|
@ -1,13 +1,11 @@
|
|||
#
|
||||
# gswbundle.make
|
||||
#
|
||||
# Makefile rules to build GNUstep-based bundles.
|
||||
# Makefile rules to build GNUstep web bundles.
|
||||
#
|
||||
# Copyright (C) 1997 Free Software Foundation, Inc.
|
||||
# Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
#
|
||||
# Author: Manuel Guesdon <mguesdon@sbuilders.com>
|
||||
# Based on WOBundle.make by Helge Hess, MDlink online service center GmbH.
|
||||
# Based on bundle.make by Ovidiu Predescu <ovidiu@net-community.com>
|
||||
# Author: Nicola Pero <nicola@brainstorm.co.uk>
|
||||
#
|
||||
# This file is part of the GNUstep Makefile Package.
|
||||
#
|
||||
|
@ -21,296 +19,15 @@
|
|||
# If not, write to the Free Software Foundation,
|
||||
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
# prevent multiple inclusions
|
||||
ifeq ($(GSWBUNDLE_MAKE_LOADED),)
|
||||
GSWBUNDLE_MAKE_LOADED=yes
|
||||
|
||||
#
|
||||
# Include in the common makefile rules
|
||||
#
|
||||
ifeq ($(RULES_MAKE_LOADED),)
|
||||
include $(GNUSTEP_MAKEFILES)/rules.make
|
||||
endif
|
||||
|
||||
ifeq ($(strip $(GSWBUNDLE_EXTENSION)),)
|
||||
GSWBUNDLE_EXTENSION = .gswbundle
|
||||
endif
|
||||
|
||||
GSWBUNDLE_LD= $(BUNDLE_LD)
|
||||
GSWBUNDLE_LDFLAGS = $(BUNDLE_LDFLAGS)
|
||||
|
||||
ifeq ($(GSWBUNDLE_INSTALL_DIR),)
|
||||
GSWBUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Libraries
|
||||
endif
|
||||
# The name of the bundle is in the BUNDLE_NAME variable.
|
||||
# The list of languages the bundle is localized in are in xxx_LANGUAGES
|
||||
# The list of bundle resource file are in xxx_RESOURCE_FILES
|
||||
# The list of localized bundle resource file are in xxx_LOCALIZED_RESOURCE_FILES
|
||||
# The list of bundle resource directories are in xxx_RESOURCE_DIRS
|
||||
# The name of the principal class is xxx_PRINCIPAL_CLASS
|
||||
# The header files are in xxx_HEADER_FILES
|
||||
# The directory where the header files are located is xxx_HEADER_FILES_DIR
|
||||
# The directory where to install the header files inside the library
|
||||
# installation directory is xxx_HEADER_FILES_INSTALL_DIR
|
||||
# where xxx is the bundle name
|
||||
# xxx_WEBSERVER_RESOURCE_DIRS <==
|
||||
# The list of localized application web server resource directories are in
|
||||
# xxx_LOCALIZED_WEBSERVER_RESOURCE_DIRS
|
||||
# where xxx is the application name <==
|
||||
|
||||
GSWBUNDLE_NAME:=$(strip $(GSWBUNDLE_NAME))
|
||||
|
||||
ifeq ($(INTERNAL_bundle_NAME),)
|
||||
# This part is included the first time make is invoked.
|
||||
|
||||
internal-all:: $(GSWBUNDLE_NAME:=.all.bundle.variables)
|
||||
|
||||
internal-install:: $(GSWBUNDLE_NAME:=.install.bundle.variables)
|
||||
|
||||
internal-uninstall:: $(GSWBUNDLE_NAME:=.uninstall.bundle.variables)
|
||||
|
||||
internal-clean:: $(GSWBUNDLE_NAME:=.clean.bundle.subprojects)
|
||||
rm -rf $(GNUSTEP_OBJ_DIR) \
|
||||
$(addsuffix $(GSWBUNDLE_EXTENSION),$(GSWBUNDLE_NAME))
|
||||
|
||||
internal-distclean:: $(GSWBUNDLE_NAME:=.distclean.bundle.subprojects)
|
||||
rm -rf shared_obj static_obj shared_debug_obj shared_profile_obj \
|
||||
static_debug_obj static_profile_obj shared_profile_debug_obj \
|
||||
static_profile_debug_obj
|
||||
|
||||
$(GSWBUNDLE_NAME):
|
||||
@$(MAKE) -f $(MAKEFILE_NAME) --no-print-directory \
|
||||
$@.all.bundle.variables
|
||||
|
||||
ifeq ($(GNUSTEP_INSTANCE),)
|
||||
include $(GNUSTEP_MAKEFILES)/Master/gswbundle.make
|
||||
else
|
||||
# This part gets included the second time make is invoked.
|
||||
|
||||
.PHONY: internal-bundle-all \
|
||||
internal-bundle-clean \
|
||||
internal-bundle-distclean \
|
||||
internal-bundle-install \
|
||||
internal-bundle-uninstall \
|
||||
before-$(TARGET)-all \
|
||||
after-$(TARGET)-all \
|
||||
build-bundle-dir \
|
||||
build-bundle \
|
||||
gswbundle-components \
|
||||
gswbundle-resource-files \
|
||||
gswbundle-localized-resource-files \
|
||||
gswbundle-webresource-dir \
|
||||
gswbundle-webresource-files \
|
||||
gswbundle-localized-webresource-files
|
||||
|
||||
# On Solaris we don't need to specifies the libraries the bundle needs.
|
||||
# How about the rest of the systems? ALL_BUNDLE_LIBS is temporary empty.
|
||||
#ALL_GSWBUNDLE_LIBS = $(ADDITIONAL_GSW_LIBS) $(AUXILIARY_GSW_LIBS) $(GSW_LIBS) \
|
||||
$(ADDITIONAL_TOOL_LIBS) $(AUXILIARY_TOOL_LIBS) \
|
||||
$(FND_LIBS) $(ADDITIONAL_OBJC_LIBS) $(AUXILIARY_OBJC_LIBS) \
|
||||
$(OBJC_LIBS) $(SYSTEM_LIBS) $(TARGET_SYSTEM_LIBS)
|
||||
#ALL_GSWBUNDLE_LIBS =
|
||||
#ALL_GSWBUNDLE_LIBS = \
|
||||
$(shell $(WHICH_LIB_SCRIPT) $(ALL_LIB_DIRS) $(ALL_GSWBUNDLE_LIBS) \
|
||||
debug=$(debug) profile=$(profile) shared=$(shared) libext=$(LIBEXT) \
|
||||
shared_libext=$(SHARED_LIBEXT))
|
||||
|
||||
internal-bundle-all:: before-$(TARGET)-all \
|
||||
$(GNUSTEP_OBJ_DIR) \
|
||||
build-bundle-dir \
|
||||
build-bundle \
|
||||
after-$(TARGET)-all
|
||||
|
||||
before-$(TARGET)-all::
|
||||
|
||||
after-$(TARGET)-all::
|
||||
|
||||
GSWBUNDLE_DIR_NAME := $(INTERNAL_bundle_NAME:=$(GSWBUNDLE_EXTENSION))
|
||||
GSWBUNDLE_FILE := \
|
||||
$(GSWBUNDLE_DIR_NAME)/$(GNUSTEP_TARGET_LDIR)/$(GSWBUNDLE_NAME)
|
||||
GSWBUNDLE_RESOURCE_DIRS = $(foreach d, $(RESOURCE_DIRS), $(GSWBUNDLE_DIR_NAME)/Resources/$(d))
|
||||
GSWBUNDLE_WEBSERVER_RESOURCE_DIRS = $(foreach d, $(WEBSERVER_RESOURCE_DIRS), $(GSWBUNDLE_DIR_NAME)/WebServerResources/$(d))
|
||||
|
||||
ifeq ($(strip $(HEADER_FILES_DIR)),)
|
||||
HEADER_FILES_DIR = .
|
||||
endif
|
||||
|
||||
ifeq ($(strip $(LANGUAGES)),)
|
||||
override LANGUAGES="English"
|
||||
endif
|
||||
|
||||
build-bundle-dir:: $(GSWBUNDLE_DIR_NAME)/Resources \
|
||||
$(GSWBUNDLE_DIR_NAME)/$(GNUSTEP_TARGET_LDIR) \
|
||||
$(GSWBUNDLE_RESOURCE_DIRS)
|
||||
|
||||
$(GSWBUNDLE_DIR_NAME)/$(GNUSTEP_TARGET_LDIR):
|
||||
@$(MKDIRS) $(GSWBUNDLE_DIR_NAME)/$(GNUSTEP_TARGET_LDIR)
|
||||
|
||||
$(GSWBUNDLE_RESOURCE_DIRS):
|
||||
@$(MKDIRS) $(GSWBUNDLE_RESOURCE_DIRS)
|
||||
|
||||
build-bundle:: $(GSWBUNDLE_FILE) \
|
||||
gswbundle-components \
|
||||
gswbundle-resource-files \
|
||||
gswbundle-localized-resource-files \
|
||||
gswbundle-localized-webresource-files \
|
||||
gswbundle-webresource-files
|
||||
|
||||
|
||||
$(GSWBUNDLE_FILE) : $(OBJ_FILES_TO_LINK)
|
||||
$(GSWBUNDLE_LD) $(GSWBUNDLE_LDFLAGS) \
|
||||
$(ALL_LDFLAGS) -o $(LDOUT)$(GSWBUNDLE_FILE) \
|
||||
$(OBJ_FILES_TO_LINK) \
|
||||
$(ALL_GSWBUNDLE_LIBS)
|
||||
|
||||
gswbundle-components :: $(GSWBUNDLE_DIR_NAME)
|
||||
ifneq ($(strip $(COMPONENTS)),)
|
||||
@(echo "Linking components into the bundle wrapper..."; \
|
||||
cd $(GSWBUNDLE_DIR_NAME)/Resources; \
|
||||
for component in $(COMPONENTS); do \
|
||||
if [ -d ../../$$component ]; then \
|
||||
$(LN_S) -f ../../$$component ./;\
|
||||
fi; \
|
||||
done; \
|
||||
echo "Linking localized components into the bundle wrapper..."; \
|
||||
for l in $(LANGUAGES); do \
|
||||
if [ -d ../../$$l.lproj ]; then \
|
||||
$(MKDIRS) $$l.lproj; \
|
||||
cd $$l.lproj; \
|
||||
for f in $(COMPONENTS); do \
|
||||
if [ -d ../../../$$l.lproj/$$f ]; then \
|
||||
$(LN_S) -f ../../../$$l.lproj/$$f .;\
|
||||
fi;\
|
||||
done;\
|
||||
cd ..; \
|
||||
fi;\
|
||||
done)
|
||||
endif
|
||||
|
||||
gswbundle-resource-files:: $(GSWBUNDLE_DIR_NAME)/bundle-info.plist \
|
||||
$(GSWBUNDLE_DIR_NAME)/Resources/Info-gnustep.plist
|
||||
ifneq ($(strip $(RESOURCE_FILES)),)
|
||||
@(echo "Linking resources into the bundle wrapper..."; \
|
||||
cd $(GSWBUNDLE_DIR_NAME)/Resources/; \
|
||||
for ff in $(RESOURCE_FILES); do \
|
||||
$(LN_S) -f ../../$$ff .;\
|
||||
done)
|
||||
endif
|
||||
|
||||
gswbundle-localized-resource-files:: $(GSWBUNDLE_DIR_NAME)/Resources/Info-gnustep.plist
|
||||
ifneq ($(strip $(LOCALIZED_RESOURCE_FILES)),)
|
||||
@(echo "Linking localized resources into the bundle wrapper..."; \
|
||||
cd $(GSWBUNDLE_DIR_NAME)/Resources; \
|
||||
for l in $(LANGUAGES); do \
|
||||
if [ -d ../../$$l.lproj ]; then \
|
||||
$(MKDIRS) $$l.lproj; \
|
||||
cd $$l.lproj; \
|
||||
for f in $(LOCALIZED_RESOURCE_FILES); do \
|
||||
if [ -f ../../../$$l.lproj/$$f ]; then \
|
||||
$(LN_S) -f ../../../$$l.lproj/$$f .;\
|
||||
fi;\
|
||||
done;\
|
||||
cd ..;\
|
||||
else\
|
||||
echo "Warning - $$l.lproj not found - ignoring";\
|
||||
fi;\
|
||||
done)
|
||||
endif
|
||||
|
||||
gswbundle-webresource-dir::
|
||||
@$(MKDIRS) $(GSWBUNDLE_WEBSERVER_RESOURCE_DIRS)
|
||||
|
||||
gswbundle-webresource-files:: $(GSWBUNDLE_DIR_NAME)/WebServerResources \
|
||||
gswbundle-webresource-dir
|
||||
ifneq ($(strip $(WEBSERVER_RESOURCE_FILES)),)
|
||||
@(echo "Linking webserver resources into the application wrapper..."; \
|
||||
cd $(GSWBUNDLE_DIR_NAME)/WebServerResources; \
|
||||
for ff in $(WEBSERVER_RESOURCE_FILES); do \
|
||||
$(LN_S) -f ../../WebServerResources/$$ff .;\
|
||||
done)
|
||||
endif
|
||||
|
||||
gswbundle-localized-webresource-files:: $(GSWBUNDLE_DIR_NAME)/WebServerResources \
|
||||
gswbundle-webresource-dir
|
||||
ifneq ($(strip $(LOCALIZED_WEBSERVER_RESOURCE_FILES)),)
|
||||
@(echo "Linking localized web resources into the application wrapper..."; \
|
||||
cd $(GSWBUNDLE_DIR_NAME)/WebServerResources; \
|
||||
for l in $(LANGUAGES); do \
|
||||
if [ -d ../../WebServerResources/$$l.lproj ]; then \
|
||||
$(MKDIRS) $$l.lproj; \
|
||||
cd $$l.lproj; \
|
||||
for f in $(LOCALIZED_WEBSERVER_RESOURCE_FILES); do \
|
||||
if [ -f ../../../WebServerResources/$$l.lproj/$$f ]; then \
|
||||
if [ ! -r $$f ]; then \
|
||||
$(LN_S) ../../../WebServerResources/$$l.lproj/$$f $$f;\
|
||||
fi;\
|
||||
fi;\
|
||||
done;\
|
||||
cd ..; \
|
||||
else \
|
||||
echo "Warning - WebServerResources/$$l.lproj not found - ignoring";\
|
||||
fi;\
|
||||
done)
|
||||
endif
|
||||
|
||||
ifeq ($(PRINCIPAL_CLASS),)
|
||||
override PRINCIPAL_CLASS = $(INTERNAL_bundle_NAME)
|
||||
endif
|
||||
|
||||
$(GSWBUNDLE_DIR_NAME)/bundle-info.plist: $(GSWBUNDLE_DIR_NAME)
|
||||
@(cd $(GSWBUNDLE_DIR_NAME); $(LN_S) -f ../bundle-info.plist .)
|
||||
|
||||
$(GSWBUNDLE_DIR_NAME)/Resources/Info-gnustep.plist: $(GSWBUNDLE_DIR_NAME)/Resources
|
||||
@(echo "{"; echo ' NOTE = "Automatically generated, do not edit!";'; \
|
||||
echo " NSExecutable = \"$(INTERNAL_bundle_NAME)\";"; \
|
||||
echo " NSPrincipalClass = \"$(PRINCIPAL_CLASS)\";"; \
|
||||
if [ "$(HAS_GSWCOMPONENTS)" != "" ]; then \
|
||||
echo " HasGSWComponents = \"$(HAS_GSWCOMPONENTS)\";"; \
|
||||
fi; \
|
||||
echo "}") >$@
|
||||
|
||||
$(GSWBUNDLE_DIR_NAME)/Resources:
|
||||
@$(MKDIRS) $@
|
||||
|
||||
$(GSWBUNDLE_DIR_NAME)/WebServerResources:
|
||||
@$(MKDIRS) $@
|
||||
|
||||
internal-bundle-install:: $(GSWBUNDLE_INSTALL_DIR)
|
||||
ifneq ($(HEADER_FILES_INSTALL_DIR),)
|
||||
$(MKINSTALLDIRS) $(GNUSTEP_HEADERS)/$(HEADER_FILES_INSTALL_DIR);
|
||||
ifneq ($(HEADER_FILES),)
|
||||
for file in $(HEADER_FILES) __done; do \
|
||||
if [ $$file != __done ]; then \
|
||||
$(INSTALL_DATA) $(HEADER_FILES_DIR)/$$file \
|
||||
$(GNUSTEP_HEADERS)/$(HEADER_FILES_INSTALL_DIR)/$$file ; \
|
||||
fi; \
|
||||
done;
|
||||
endif
|
||||
endif
|
||||
rm -rf $(GSWBUNDLE_INSTALL_DIR)/$(GSWBUNDLE_DIR_NAME); \
|
||||
$(TAR) ch --exclude=CVS --to-stdout $(GSWBUNDLE_DIR_NAME) | (cd $(GSWBUNDLE_INSTALL_DIR); $(TAR) xf -)
|
||||
ifneq ($(CHOWN_TO),)
|
||||
$(CHOWN) -R $(CHOWN_TO) $(GSWBUNDLE_INSTALL_DIR)/$(GSWBUNDLE_DIR_NAME)
|
||||
endif
|
||||
ifeq ($(strip),yes)
|
||||
$(STRIP) $(GSWBUNDLE_INSTALL_DIR)/$(GSWBUNDLE_FILE)
|
||||
endif
|
||||
|
||||
$(GSWBUNDLE_INSTALL_DIR)::
|
||||
@$(MKINSTALLDIRS) $@
|
||||
|
||||
internal-bundle-uninstall::
|
||||
ifneq ($(HEADER_FILES),)
|
||||
for file in $(HEADER_FILES) __done; do \
|
||||
if [ $$file != __done ]; then \
|
||||
rm -rf $(GNUSTEP_HEADERS)/$(HEADER_FILES_INSTALL_DIR)/$$file ; \
|
||||
fi; \
|
||||
done;
|
||||
endif
|
||||
rm -rf $(GSWBUNDLE_INSTALL_DIR)/$(GSWBUNDLE_DIR_NAME)
|
||||
|
||||
ifeq ($(GNUSTEP_TYPE),gswbundle)
|
||||
include $(GNUSTEP_MAKEFILES)/Instance/gswbundle.make
|
||||
endif
|
||||
|
||||
endif
|
||||
# bundle.make loaded
|
||||
|
||||
## Local variables:
|
||||
## mode: makefile
|
||||
|
|
Loading…
Reference in a new issue