seabiscuit@ubuntu:/$ ls /usr/local/lib/<br>
firmware/&nbsp; python2.4/ site_ruby/<br>
seabiscuit@ubuntu:/$ ls /usr/local/lib<br>
firmware&nbsp; python2.4&nbsp; site_ruby<br>
<br>
$ ls /usr/lib/grass/<br>
bin&nbsp; bwidget&nbsp; docs&nbsp; driver&nbsp; etc&nbsp; fonts&nbsp; include&nbsp; lib&nbsp; man&nbsp; scripts<br>
<br>
But I think I fixed the problem now! :)<br>
<br>
Here's the makefile : <br>
<br>
<br>
prot1: utils.o db_mg.o session.o main.o<br>
&nbsp;&nbsp;&nbsp; gcc -o prot1 -L/usr/lib/grass/lib utils.o db_mg.o session.o main.o -lreadline -lcurses -lgrass_gis -lm<br>
<br>
main.o: <br>
&nbsp;&nbsp;&nbsp; gcc -c -I /usr/lib/grass/include -L/usr/lib/grass/lib main.c<br>
<br>
session.o: <br>
&nbsp;&nbsp;&nbsp; gcc -c session.c<br>
<br>
<br>
db_mg.o:<br>
&nbsp;&nbsp;&nbsp; gcc -c -I /usr/lib/grass/include db_mg.c<br>
<br>
<br>
utils.o:<br>
&nbsp;&nbsp;&nbsp; gcc -c utils.c<br>
<br>
<br>
clean: <br>
&nbsp;&nbsp;&nbsp; rm -f *.o *~ prot1<br>
&nbsp;<br>
Thanks anyway for the help! :-D<br>
<br><br><div><span class="gmail_quote">2006/3/24, marcos boullón magán &lt;<a href="mailto:marcosboullon@gmail.com">marcosboullon@gmail.com</a>&gt;:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
&gt;&nbsp;&nbsp;gcc -o prot1 utils.o db_mg.o session.o main.o -lreadline -lcurses<br>&gt; -lgrass_gis<br>&gt;&nbsp;&nbsp;/usr/bin/ld: cannot find -lgrass_gis<br>&gt;&nbsp;&nbsp;collect2: ld returned 1 exit status<br>&gt;&nbsp;&nbsp;make: *** [prot1] Error 1<br>
<br>Yoy forgot again the -L/usr/local/grass6/lib switch in the linking<br>command (you have all the GRASS libs there, haven't you?).<br><br>Anyway, the easiest way to start programming against theses libraries<br>is reusing the code in grass6/vector/v.sample directory, in GRASS
<br>sourcecode. Rename your code as &quot;main.c&quot; and run &quot;make&quot; to compile.<br>Unfortunately the Makefile file assumes that you managed to compile<br>and build GRASS, not a trivial task (nor too dificult).
<br><br>Good luck,<br><br>M.<br><br>--<br>-- marcos boullón magán<br></blockquote></div><br>