mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 22:00:49 +00:00
Additoins from main, fix config.sub evaluation
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/branches/freeze-0_6_5@5858 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
100fc4158b
commit
464c7253ec
4 changed files with 29 additions and 3 deletions
18
ChangeLog
18
ChangeLog
|
@ -1,3 +1,21 @@
|
|||
2000-01-24 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* names.make (GNUSTEP_HOST_GUESS): New variable. Evaluate config.guess
|
||||
and config.sub separately.
|
||||
|
||||
2000-01-22 Manuel Guesdon <mguesdon@sbuilders.com>
|
||||
|
||||
* gswapp.make and gswbundle.make: tar options changed
|
||||
|
||||
2000-01-22 Manuel Guesdon <mguesdon@sbuilders.com>
|
||||
|
||||
* GNUmakefile: add gswapp.make and gswbundle.make
|
||||
|
||||
2000-01-22 Manuel Guesdon <mguesdon@sbuilders.com>
|
||||
|
||||
* rules.make and bundle.make: changes for GNUstepWeb
|
||||
* gswapp.make and gswbundle.make: added
|
||||
|
||||
2000-01-14 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* GNUstep.csh.in (GNUSTEP_LOCAL_ROOT): Use correct quotes.
|
||||
|
|
|
@ -97,7 +97,7 @@ install: all
|
|||
common.make brain.make library.make rules.make target.make \
|
||||
tool.make ctool.make test-library.make names.make objc.make \
|
||||
test-application.make test-tool.make subproject.make \
|
||||
palette.make \
|
||||
palette.make gswapp.make gswbundle.make \
|
||||
documentation.make MediaBook.func executable.template; do \
|
||||
$(INSTALL_DATA) $$f $(makedir); \
|
||||
done
|
||||
|
@ -121,7 +121,7 @@ uninstall:
|
|||
common.make brain.make library.make rules.make target.make \
|
||||
tool.make ctool.make test-library.make names.make objc.make \
|
||||
test-application.make test-tool.make subproject.make \
|
||||
palette.make \
|
||||
palette.make gswapp.make gswbundle.make \
|
||||
documentation.make MediaBook.func executable.template; do \
|
||||
rm -f $(makedir)/$$f; \
|
||||
done
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
|
||||
ifneq ($(internal_names_clean), yes)
|
||||
ifeq ($(GNUSTEP_HOST),)
|
||||
GNUSTEP_HOST := $(shell (cd /tmp; $(CONFIG_SUB_SCRIPT) $(CONFIG_GUESS_SCRIPT)))
|
||||
GNUSTEP_HOST_GUESS := $(shell (cd /tmp; $(CONFIG_GUESS_SCRIPT)))
|
||||
GNUSTEP_HOST := $(shell (cd /tmp; $(CONFIG_SUB_SCRIPT) $(CONFIG_HOST_GUESS)))
|
||||
GNUSTEP_HOST_CPU := $(shell (cd /tmp; $(CONFIG_CPU_SCRIPT) $(GNUSTEP_HOST)))
|
||||
GNUSTEP_HOST_VENDOR := $(shell (cd /tmp; $(CONFIG_VENDOR_SCRIPT) $(GNUSTEP_HOST)))
|
||||
GNUSTEP_HOST_OS := $(shell (cd /tmp; $(CONFIG_OS_SCRIPT) $(GNUSTEP_HOST)))
|
||||
|
|
|
@ -210,9 +210,16 @@ $(JAVA_OBJ_PREFIX)%.class : %.java
|
|||
HEADER_FILES_DIR="$($*_HEADER_FILES_DIR)" \
|
||||
HEADER_FILES_INSTALL_DIR="$($*_HEADER_FILES_INSTALL_DIR)" \
|
||||
RESOURCE_FILES="$($*_RESOURCE_FILES)" \
|
||||
WEBSERVER_RESOURCE_FILES="$($*_WEBSERVER_RESOURCE_FILES)" \
|
||||
LOCALIZED_RESOURCE_FILES="$($*_LOCALIZED_RESOURCE_FILES)" \
|
||||
LOCALIZED_WEBSERVER_RESOURCE_FILES="$($*_LOCALIZED_WEBSERVER_RESOURCE_FILES)" \
|
||||
MAIN_MODEL_FILE="$($*_MAIN_MODEL_FILE)" \
|
||||
APPLICATION_ICON="$($*_APPLICATION_ICON)" \
|
||||
RESOURCE_DIRS="$($*_RESOURCE_DIRS)" \
|
||||
COMPONENTS="$($*_COMPONENTS)" \
|
||||
LANGUAGES="$($*_LANGUAGES)" \
|
||||
HAS_GSWCOMPONENTS="$($*_HAS_GSWCOMPONENTS)" \
|
||||
GSWAPP_INFO_PLIST="$($*_GSWAPP_INFO_PLIST)" \
|
||||
BUNDLE_LIBS="$($*_BUNDLE_LIBS) $(BUNDLE_LIBS)" \
|
||||
PALETTE_LIBS="$($*_PALETTE_LIBS) $(PALETTE_LIBS)" \
|
||||
PALETTE_ICON="$($*_PALETTE_ICON)" \
|
||||
|
|
Loading…
Reference in a new issue