mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 22:00:49 +00:00
Add *Info.plist
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@11303 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
c67fc12da3
commit
ee7afb1d85
3 changed files with 12 additions and 4 deletions
|
@ -1,3 +1,8 @@
|
|||
2001-11-03 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* bundle.make ($(BUNDLE_DIR_NAME)/Resources/Info-gnustep.plist):
|
||||
Add *Info.plist (suggestion from stefanurbanek@yahoo.fr).
|
||||
|
||||
2001-10-26 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* Documentation/news.texi: Update
|
||||
|
|
|
@ -13,11 +13,11 @@ The currently released version is @samp{@value{GNUSTEP-MAKE-VERSION}}.
|
|||
|
||||
@itemize @bullet
|
||||
@item The core rules and internals of gnustep-make have been fundamentally
|
||||
redesigned and rewritten. notably, gnustep-make now works using only
|
||||
a single recursive sub-make invocation rather than two, which makes
|
||||
it consistently faster and simpler in all circumstances.
|
||||
redesigned and rewritten. notably, gnustep-make now works using only
|
||||
a single recursive sub-make invocation rather than two, which makes
|
||||
it consistently faster and simpler in all circumstances.
|
||||
@item The clean rules have been heavily optimized - they no longer use
|
||||
recursive sub-make invocations at all and so they are really fast.
|
||||
recursive sub-make invocations at all and so they are really fast.
|
||||
@item Many improvements to java support. Optimized management of nested classes
|
||||
@item Better conformance to make conventions.
|
||||
@item Fixed darwin support
|
||||
|
|
|
@ -259,6 +259,9 @@ $(BUNDLE_DIR_NAME)/Resources/Info-gnustep.plist: $(BUNDLE_DIR_NAME)/Resources
|
|||
fi; \
|
||||
echo " NSPrincipalClass = \"$(PRINCIPAL_CLASS)\";"; \
|
||||
echo "}") >$@
|
||||
@if [ -r "$(INTERNAL_bundle_NAME)Info.plist" ]; then \
|
||||
plmerge $@ $(INTERNAL_bundle_NAME)Info.plist; \
|
||||
fi
|
||||
|
||||
internal-bundle-install:: $(BUNDLE_INSTALL_DIR)
|
||||
ifneq ($(HEADER_FILES_INSTALL_DIR),)
|
||||
|
|
Loading…
Reference in a new issue