mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
standalone deployment templates
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@34009 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
5c0b3d7846
commit
72f937026b
2 changed files with 94 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
|||
2011-10-17 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* FilesystemLayouts/standalone: first draft at a layout to put
|
||||
everything in one directory for easy deployment of relocatable,
|
||||
standalone packages.
|
||||
Use --with-layout=standalone
|
||||
|
||||
2011-10-15 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* target.make: Use -pthread for compilation on all platforms.
|
||||
|
|
87
FilesystemLayouts/standalone
Normal file
87
FilesystemLayouts/standalone
Normal file
|
@ -0,0 +1,87 @@
|
|||
#
|
||||
# Standalone filesystem layout
|
||||
#
|
||||
# This is a *build-time* layout for standalone application deployment,
|
||||
# with all the libraries and executables stored in one place.
|
||||
# If changing this layout, please also update the corresponding file in
|
||||
# gnustep-base (standalone.conf).
|
||||
#
|
||||
# You can configure gnustep-make using --width-layout=standalone and
|
||||
# use that to build and install your code into the 'standlone' directory,
|
||||
# then distribute that directory using a single environment variable set
|
||||
# to tell the operating system where to find the libraries.
|
||||
#
|
||||
# NB. This file gives the layout for *building* a standalone package.
|
||||
# It is not the same as the GNUstep.conf file which would be used to
|
||||
# *deploy* the package. Using this layout lets you build/install all
|
||||
# your software into a single directory within your home directory,
|
||||
# but the deployment layout would provide instructions to locate all
|
||||
# the resources within that directory and relative to the gnustep base
|
||||
# library. Please see the GNUstep base library documentation for detailed
|
||||
# information about deploying relocatable and standalone packages.
|
||||
#
|
||||
|
||||
# This tells gnustep-make to put the 'standalone' directory in your home
|
||||
# directory.
|
||||
GNUSTEP_DEFAULT_PREFIX=~
|
||||
|
||||
# These are only used by gnustep-base to implement the NSUserDirectory
|
||||
# API. We never install anything in them. They will be used as they
|
||||
# are without $prefix.
|
||||
GNUSTEP_SYSTEM_USERS_DIR=/home
|
||||
GNUSTEP_NETWORK_USERS_DIR=/home
|
||||
GNUSTEP_LOCAL_USERS_DIR=/home
|
||||
|
||||
# NB: $prefix will be added to all the MAKEFILES/SYSTEM/NETWORK/LOCAL
|
||||
# paths.
|
||||
GNUSTEP_MAKEFILES=/standalone/Makefiles
|
||||
|
||||
GNUSTEP_SYSTEM_APPS=/standalone
|
||||
GNUSTEP_SYSTEM_ADMIN_APPS=/standalone
|
||||
GNUSTEP_SYSTEM_WEB_APPS=/standalone
|
||||
GNUSTEP_SYSTEM_TOOLS=/standalone
|
||||
GNUSTEP_SYSTEM_ADMIN_TOOLS=/standalone
|
||||
GNUSTEP_SYSTEM_LIBRARY=/standalone
|
||||
GNUSTEP_SYSTEM_HEADERS=/standalone/include
|
||||
GNUSTEP_SYSTEM_LIBRARIES=/standalone
|
||||
GNUSTEP_SYSTEM_DOC=/standalone/Documentation
|
||||
GNUSTEP_SYSTEM_DOC_MAN=/standalone/man
|
||||
GNUSTEP_SYSTEM_DOC_INFO=/standalone/info
|
||||
|
||||
GNUSTEP_NETWORK_APPS=/standalone
|
||||
GNUSTEP_NETWORK_ADMIN_APPS=/standalone
|
||||
GNUSTEP_NETWORK_WEB_APPS=/standalone
|
||||
GNUSTEP_NETWORK_TOOLS=/standalone
|
||||
GNUSTEP_NETWORK_ADMIN_TOOLS=/standalone
|
||||
GNUSTEP_NETWORK_LIBRARY=/standalone
|
||||
GNUSTEP_NETWORK_HEADERS=/standalone/include
|
||||
GNUSTEP_NETWORK_LIBRARIES=/standalone
|
||||
GNUSTEP_NETWORK_DOC=/standalone/Documentation
|
||||
GNUSTEP_NETWORK_DOC_MAN=/standalone/man
|
||||
GNUSTEP_NETWORK_DOC_INFO=/standalone/info
|
||||
|
||||
GNUSTEP_LOCAL_APPS=/standalone
|
||||
GNUSTEP_LOCAL_ADMIN_APPS=/standalone
|
||||
GNUSTEP_LOCAL_WEB_APPS=/standalone
|
||||
GNUSTEP_LOCAL_TOOLS=/standalone
|
||||
GNUSTEP_LOCAL_ADMIN_TOOLS=/standalone
|
||||
GNUSTEP_LOCAL_LIBRARY=/standalone
|
||||
GNUSTEP_LOCAL_HEADERS=/standalone/include
|
||||
GNUSTEP_LOCAL_LIBRARIES=/standalone
|
||||
GNUSTEP_LOCAL_DOC=/standalone/Documentation
|
||||
GNUSTEP_LOCAL_DOC_MAN=/standalone/man
|
||||
GNUSTEP_LOCAL_DOC_INFO=/standalone/info
|
||||
|
||||
GNUSTEP_USER_DIR_APPS=GNUstep/Applications
|
||||
GNUSTEP_USER_DIR_ADMIN_APPS=GNUstep/Applications/Admin
|
||||
GNUSTEP_USER_DIR_WEB_APPS=GNUstep/WebApplications
|
||||
GNUSTEP_USER_DIR_TOOLS=GNUstep/Tools
|
||||
GNUSTEP_USER_DIR_ADMIN_TOOLS=GNUstep/Tools/Admin
|
||||
GNUSTEP_USER_DIR_LIBRARY=GNUstep/Library
|
||||
GNUSTEP_USER_DIR_HEADERS=GNUstep/Library/Headers
|
||||
GNUSTEP_USER_DIR_LIBRARIES=GNUstep/Library/Libraries
|
||||
GNUSTEP_USER_DIR_DOC=GNUstep/Library/Documentation
|
||||
GNUSTEP_USER_DIR_DOC_MAN=GNUstep/Library/Documentation/man
|
||||
GNUSTEP_USER_DIR_DOC_INFO=GNUstep/Library/Documentation/info
|
||||
GNUSTEP_USER_CONFIG_FILE=.GNUstep.conf
|
||||
GNUSTEP_USER_DEFAULTS_DIR=GNUstep/Defaults
|
Loading…
Reference in a new issue