<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Generator" CONTENT="MS Exchange Server version 6.5.7226.0">
<TITLE>RE: [Cook] newbee need some help</TITLE>
</HEAD>
<BODY>
<!-- Converted from text/plain format -->
<BR>
<BR>
<BR>
<BR>
<BR>

<P><FONT SIZE=2>&gt;-----Original Message-----<BR>
&gt;From: cook-users-bounces+jpendergraft=sjm.com@auug.org.au on behalf of Dietmar Schaefer<BR>
&gt;Sent: Thu 01-Dec-05 10:24<BR>
&gt;To: cook-users@auug.org.au<BR>
&gt;Subject: [Cook] newbee need some help<BR>
<BR>
&gt;working trought the tutorial I have a couple of problems:<BR>
<BR>
&gt;/* info about our files */<BR>
&gt;manifest =<BR>
&gt;&nbsp;&nbsp;&nbsp; [collect find . -print];<BR>
<BR>
&gt;collecting some files works well.<BR>
<BR>
<BR>
&gt;/* how to build each program */<BR>
<BR>
&gt;flowmon_src = [match_mask src/FlowMonitor/%.cxx [manifest]];<BR>
<BR>
&gt;does not work !<BR>
<BR>
<BR>
&gt; Can someone please trell me what's wrong with it ?<BR>
I believe you problem is due to how you gather manifest. Using find . -print is going to produce results with leading ./ such as:<BR>
./src/FlowMonitor/foo.cxx<BR>
Which will not match your pattern. Once you get aegis working you will have a better way to get the manifest. For you experiments I would suggest:<BR>
manifest =<BR>
&nbsp;&nbsp; [collect find . -print | sed -e 's:^\./::'];<BR>
Or if your files are indeed all under src then try:<BR>
manifest =<BR>
&nbsp;&nbsp; [collect find src -print];<BR>
<BR>
Either should produce results that will match your src/FlowMonitor/%.cxx pattern.<BR>
<BR>
&gt; We decided to give aegis a change and therefor cook.<BR>
Good choice.<BR>
<BR>
&gt; cook now compiles fine under Tru64 but aegis doesn't.<BR>
What are your compile problems?<BR>
<BR>
&gt;Dietmar<BR>
&gt;_______________________________________________<BR>
&gt;Cook-users mailing list<BR>
&gt;Cook-users@auug.org.au<BR>
&gt;<A HREF="http://www.auug.org.au/mailman/listinfo/cook-users">http://www.auug.org.au/mailman/listinfo/cook-users</A><BR>
<BR>
Jerry Pendergraft&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; voice:651-523-6935<BR>
St.Jude Medical&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mobil:651-491-0163<BR>
Atrial Fibrillation Division&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; email:jpendergraft@sjm.com<BR>
1350 Energy Lane<BR>
St.Paul, MN&nbsp; 55108<BR>
<BR>
<BR>
<BR>
<BR>
</FONT>
</P>

</BODY>
</HTML>