Re: Maintaining header file directory structure on install

2000-06-16 Thread John R. Sheets
On Friday, June 16, 2000, F Labrosse <[EMAIL PROTECTED]> wrote: > Pete Willemsen writes: > > Hello. > > > > I'm struggling with figuring out a way to maintain my directory > > structure for my header files. I have the following structure > > > >file1.c ... fileN.c PackageName/ Makefil

Maintaining header file directory structure on install

2000-06-16 Thread F Labrosse
Pete Willemsen writes: > Hello. > > I'm struggling with figuring out a way to maintain my directory > structure for my header files. I have the following structure > >file1.c ... fileN.c PackageName/ Makefile.am configure.in ... > | >

Re: Maintaining header file directory structure on install

2000-06-15 Thread Tom Tromey
Ossama> pkgincludedir = $(prefix)/include/PackageName >> This is wrong in two ways. >> Use $(includedir)/PackageName instead. Ossama> Thanks for clarification! That makes more sense! What's the Ossama> second way it is wrong? Ossama> pkgincludedir = $(includedir)/PackageName Ossama>

Re: Maintaining header file directory structure on install

2000-06-15 Thread Ossama Othman
Hi Tom, On Thu, Jun 15, 2000 at 06:54:03PM -0700, Tom Tromey wrote: > Ossama> There may be an easier to achieve what you want. How about > Ossama> the following: > > Ossama> pkgincludedir = $(prefix)/include/PackageName > > This is wrong in two ways. > Use $(includedir)/PackageName inste

Re: Maintaining header file directory structure on install

2000-06-15 Thread Tom Tromey
Ossama> There may be an easier to achieve what you want. How about Ossama> the following: Ossama> pkgincludedir = $(prefix)/include/PackageName This is wrong in two ways. Use $(includedir)/PackageName instead. Tom

Re: Maintaining header file directory structure on install

2000-06-15 Thread Pete Willemsen
Hi Ossama, Thanks again! Using "pkgincludedir" made it work. I greatly appreciate your help! Pete -- Pete WillemsenDepartment of Comp. Sci. [EMAIL PROTECTED] University of Iowa

Re: Maintaining header file directory structure on install

2000-06-15 Thread Ossama Othman
Hi Pete, On Thu, Jun 15, 2000 at 08:13:18PM -0500, Pete Willemsen wrote: > Thanks for the reply and suggestion! Your method did work for placing the > header files in a directory of their own inside the installed include > directory. I used "pkginclude_HEADERS" inside my PackageName sub-direc

Re: Maintaining header file directory structure on install

2000-06-15 Thread Pete Willemsen
Thanks for the reply and suggestion! Your method did work for placing the header files in a directory of their own inside the installed include directory. I used "pkginclude_HEADERS" inside my PackageName sub-directory that holds my header files, and used SUBDIRS to get to that directory. Ho

Re: Maintaining header file directory structure on install

2000-06-15 Thread Ossama Othman
On Thu, Jun 15, 2000 at 04:15:47PM -0500, Pete Willemsen wrote: > Hello. > > I'm struggling with figuring out a way to maintain my directory > structure for my header files. I have the following structure > >file1.c ... fileN.c PackageName/ Makefile.am configure.in ... >

Maintaining header file directory structure on install

2000-06-15 Thread Pete Willemsen
Hello. I'm struggling with figuring out a way to maintain my directory structure for my header files. I have the following structure file1.c ... fileN.c PackageName/ Makefile.am configure.in ... | file1.h ... fileN.h I can build my code into