[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Newbie: Automake installation directories
From: |
Αλέξανδρος Καρυπίδης (Alexandros Karypidis) |
Subject: |
Re: Newbie: Automake installation directories |
Date: |
Sun, 3 Feb 2002 16:23:15 +0200 |
Please not that for testing I run: ./configure --prefix=/tmp/k
> Hello all,
>
> I'm trying to install my header files in the directory
> "/usr/local/include/PACKAGE/". Using a very simple "sampleproject" which I
> created I tried using:
>
> "pkgincludedir_HEADERS = header1.h header2.h"
>
> This fails during make install because mkin
>
> "/bin/sh ../config/mkinstalldirs /tmp/k/include/"
>
> and subsequently copy commands fail because /tmp/k/include/sampleproject"
> does not exists.
>
> I also tried:
>
> nobase_include_HEADERS = sampleprocject/header1.h sampleproject2.h
>
> but then automake fails with:
>
> src/Makefile.am:8: invalid variable `nobase_include_HEADERS'
>
> Any pointers anyone?