From: stephan b. <st...@ei...> - 2003-09-03 09:30:19
|
On Wednesday 03 September 2003 09:51, Rusty Ballinger wrote: > (catching up with mail since last Thursday night) > > > Update of /cvsroot/libfunutil/libfunutil/include/fun > > > > +INSTALL_PACKAGE_HEADERS = $(wildcard *.h) > > Would it work to put "INSTALL_PACKAGE_HEADERS = $(HEADERS)" in > lib/funUtil/Makefile instead? I think that would be "safer", as it > prevents random *.h cruft in include/fun from being installed. That will work, but you'll need to change on thing: INSTALL_PACKAGE_HEADERS_DEST = $(prefix)/include/fun otherwise they'll go to $(prefix)/include/$(PACKAGE_NAME) and #include <fun/foo.h> won't work. i prefer that the install come from the fun dir, but that wasn't possible at one early point because i didn't have properly configurable INSTALL_XXX vars and the headers wanted to install to libfunutil, which isn't what we want. So, yes - the preferred way (for me, anyway) would be to do the install from the files' homes and not an intermediary dir like include/fun. -- ----- stephan st...@ei... - http://www.einsurance.de "...control is a degree of inhibition, and a system which is perfectly inhibited is completely frozen." -- Alan W. Watts |