mirror of
https://github.com/gnustep/tools-make.git
synced 2025-05-06 03:40:44 +00:00
Improved making.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@2858 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
ca368e8e68
commit
24a31c8f04
3 changed files with 11 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Mon Jul 20 10:38:25 1998 Adam Fedor <fedor@ultra.doc.com>
|
||||||
|
|
||||||
|
* application.make (app-resource-files): Use For loop to copy files.
|
||||||
|
* bundle.make (app-resource-files): Likewise.
|
||||||
|
|
||||||
Fri Jul 10 21:46:19 1998 Adam Fedor <fedor@ultra.doc.com>
|
Fri Jul 10 21:46:19 1998 Adam Fedor <fedor@ultra.doc.com>
|
||||||
|
|
||||||
* target.make (HP_UX SHARED_LINK): Fix up including *.o files.
|
* target.make (HP_UX SHARED_LINK): Fix up including *.o files.
|
||||||
|
|
|
@ -148,7 +148,9 @@ app-resource-dir::
|
||||||
app-resource-files:: $(APP_DIR_NAME)/Resources/Info-gnustep.plist app-resource-dir
|
app-resource-files:: $(APP_DIR_NAME)/Resources/Info-gnustep.plist app-resource-dir
|
||||||
@(if [ "$(RESOURCE_FILES)" != "" ]; then \
|
@(if [ "$(RESOURCE_FILES)" != "" ]; then \
|
||||||
echo "Copying resources into the application wrapper..."; \
|
echo "Copying resources into the application wrapper..."; \
|
||||||
cp -r $(RESOURCE_FILES) $(APP_DIR_NAME)/Resources/$(RESOURCE_FILES); \
|
for f in $(RESOURCE_FILES); do \
|
||||||
|
cp -r $$f $(APP_DIR_NAME)/Resources/$$f; \
|
||||||
|
done \
|
||||||
fi)
|
fi)
|
||||||
|
|
||||||
$(APP_DIR_NAME)/Resources/Info-gnustep.plist: $(APP_DIR_NAME)/Resources
|
$(APP_DIR_NAME)/Resources/Info-gnustep.plist: $(APP_DIR_NAME)/Resources
|
||||||
|
|
|
@ -98,7 +98,9 @@ $(BUNDLE_FILE) : $(C_OBJ_FILES) $(OBJC_OBJ_FILES)
|
||||||
bundle-resource-files:: $(BUNDLE_DIR_NAME)/Resources/Info-gnustep.plist
|
bundle-resource-files:: $(BUNDLE_DIR_NAME)/Resources/Info-gnustep.plist
|
||||||
@(if [ "$(RESOURCE_FILES)" != "" ]; then \
|
@(if [ "$(RESOURCE_FILES)" != "" ]; then \
|
||||||
echo "Copying resources into the bundle wrapper..."; \
|
echo "Copying resources into the bundle wrapper..."; \
|
||||||
cp -r $(RESOURCE_FILES) $(BUNDLE_DIR_NAME)/Resources; \
|
for f in $(RESOURCE_FILES); do \
|
||||||
|
cp -r $$f $(BUNDLE_DIR_NAME)/Resources/$$f; \
|
||||||
|
done; \
|
||||||
fi)
|
fi)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue