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/PTHREAD/ here

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

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 stefano.lattar...@gmail.com 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

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

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 \ TestLowLatencyData2

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 stefano.lattar...@gmail.com wrote: This is expected, since the use of per-target compilation flags causes the generated object files to be renamed; see: http://www.gnu.org/software/automake/manual/automake.html#Renamed-Objects Good, I was