[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: need to install (but not build or distribute) something to the bin d
From: |
Harlan Stenn |
Subject: |
Re: need to install (but not build or distribute) something to the bin directory... |
Date: |
Sat, 05 Aug 2006 01:57:35 +0000 |
> > bin_DATA = libnetcdf.def
> >
> > Or you can use nodist_bin_DATA, if it makes it more readable for you.
> > (*_DATA are not distributed by default.)
>
> Neither works, because automake disallows it:
> | Makefile.am:1: `bindir' is not a legitimate directory for `DATA'
That's easy - use something like:
bindata_DATA= libnetcdf.def
bindatadir= $bindir
H