Le ven 28/02/2003 à 14:56, Nicola Pero a écrit : > > > Hi > > > > > > I have succeeded in writing a Gnumakefile for a framework. It compiles > > and creates the final 'Foo.framework'. The only bizarre thing is, that > > there are no headers in the 'Headers' directory, though I have a whole > > list of header files in Foo_HEADER_FILES.
I myself use the following lines for headers (from my libPSS project): libPSS_HEADERS = $(shell find Headers/PSS -name "*.h") libPSS_HEADER_FILES = $(shell cd Headers/PSS ; find . -name "*.h") libPSS_HEADER_FILES_DIR = Headers/PSS libPSS_HEADER_FILES_INSTALL_DIR = PSS I don't know if everything is needed, but this works just fine with this kind of directory layout: . |-- Documentation | |-- API | `-- UML |-- Examples |-- GNUmakefile |-- Headers | `-- PSS |-- PSS.prj |-- Sources | `-- PSS `-- Tests Hope this helps, -- Sebastien _______________________________________________ Help-gnustep mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/help-gnustep
