> Second, installation -- needlessly -- copies the > HelperTool into the Tools directory in the chosen installation > domain. Is there any better way to achieve copying the HelperTool > into the Application's bundle and avoid installing it separately?
Thanks Wolfgang - gnustep-make has got a special flag that does precisely that. You should remove HelperTool from Application_RESOURCE_FILES, and add: HelperTool_COPY_INTO_DIR = Application.app That will disable the standard installation, and instead copy the tool into the Application.app directory at compilation time (also, shouldn't depend on the order of compilation between app and tool). :-) Thanks PS: you can remove "include $(GNUSTEP_MAKEFILES)/aggregate.make" since you're not using it ;-) _______________________________________________ Discuss-gnustep mailing list [email protected] http://lists.gnu.org/mailman/listinfo/discuss-gnustep
