Re: CC $sourcebasename-$sourcebasename.o displayed during silent rules build

2012-05-09 Thread Adam Mercer
On Wed, May 9, 2012 at 12:09 PM, Stefano Lattarini wrote: > This is expected, since the use of per-target compilation flags causes > the generated object files to be renamed; see: > Good, I was worried that I was doing s

Re: CC $sourcebasename-$sourcebasename.o displayed during silent rules build

2012-05-09 Thread Stefano Lattarini
On 05/09/2012 06:50 PM, Adam Mercer wrote: > Hi > > Next, hopefully not so stupid, question; my Makefile.am is now > > AM_CFLAGS = $(LALSUPPORT_CFLAGS) > LDADD = $(LALSUPPORT_LIBS) $(top_builddir)/src/liblalframe.la > > if PTHREAD > PTHREADPRGS = \ > TestLowLatencyData1 \ > TestLowLa

CC $sourcebasename-$sourcebasename.o displayed during silent rules build

2012-05-09 Thread Adam Mercer
Hi Next, hopefully not so stupid, question; my Makefile.am is now AM_CFLAGS = $(LALSUPPORT_CFLAGS) LDADD = $(LALSUPPORT_LIBS) $(top_builddir)/src/liblalframe.la if PTHREAD PTHREADPRGS = \ TestLowLatencyData1 \ TestLowLatencyData2 \ TestLowLatencyData3 endif if LALSUPPORT

Re: specifying _LDADD and _CFLAGS for test codes

2012-05-09 Thread Adam Mercer
On Wed, May 9, 2012 at 5:13 AM, Stefano Lattarini wrote: > s/PTHEAD/PTHREAD/ here ;-) > > Let me know if the problem is solved by that. Thanks, I knew it would be something stupid but I was hoping it wouldn't be that stupid! Cheers Adam

Re: limited install locations for scripts

2012-05-09 Thread Stefano Lattarini
On 05/06/2012 09:07 PM, Bruno Haible wrote: > Hi, > Hi Bruno, sorry for the delay (I had somehow missed this mail of yours). > The Automake manual, node "Scripts", says: > >Scripts can be installed in `bindir', `sbindir', `libexecdir', > `pkglibexecdir', or `pkgdatadir'. > > Also htt

Re: specifying _LDADD and _CFLAGS for test codes

2012-05-09 Thread Stefano Lattarini
Hi Adam. On 05/09/2012 12:46 AM, Adam Mercer wrote: > > check_PROGRAMS = \ > AggregationTest \ > FrameCacheTest \ > FrameDataTest \ > FrameStreamTest \ > MakeFrames \ > Read40mData \ > ReadGEOData \ > ReadLHOData \ > $(PTHEADPRGS) > s/PTHEAD/PT