[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Headers made by 'framework.make'
From: |
Sebastien Pierre |
Subject: |
Re: Headers made by 'framework.make' |
Date: |
28 Feb 2003 16:17:21 +0100 |
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