Change to palette.make to create a plist palette.table

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@19717 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2004-07-12 03:24:33 +00:00
parent db41f0f95d
commit d14eb99895
2 changed files with 10 additions and 1 deletions

View file

@ -1,3 +1,10 @@
2004-07-11 Gregory John Casamento <greg_casamento@yahoo.com>
* Instance/palette.make: Updated the palette.make to create
a plist instead of a string format file for the palette.table.
It's necessary for the the palette.table to be able to pass in
a set of classes to be imported.
2004-07-09 Adam Fedor <fedor@gnu.org>
* configure.ac: Improve compiler type test.

View file

@ -155,10 +155,12 @@ $(PALETTE_DIR)/Resources/Info-gnustep.plist: $(PALETTE_DIR)/Resources
MAIN_MODEL_FILE = $(strip $(subst .gmodel,,$(subst .gorm,,$(subst .nib,,$($(GNUSTEP_INSTANCE)_MAIN_MODEL_FILE)))))
$(PALETTE_DIR)/Resources/palette.table: $(PALETTE_DIR)/Resources
$(ECHO_CREATING)(echo ' NOTE = "Automatically generated, do not edit!";'; \
$(ECHO_CREATING)(echo "{";\
echo ' NOTE = "Automatically generated, do not edit!";'; \
echo " NibFile = \"$(MAIN_MODEL_FILE)\";"; \
echo " Class = \"$(PRINCIPAL_CLASS)\";"; \
echo " Icon = \"$(PALETTE_ICON)\";"; \
echo "}"; \
if [ -r "$(GNUSTEP_INSTANCE)palette.table" ]; then \
cat $(GNUSTEP_INSTANCE)palette.table; \
fi; \