objdictgen/doc/about.html
author gabriele at naustech dot com
Thu, 12 Jun 2014 14:07:16 +0200
changeset 791 7740ac6fdedc
parent 614 9b1fe0532d0d
permissions -rw-r--r--
Fix : libcanfestival_unix.a not built if examples are not compiled

Problem: when building Canfestival with unix timers 'libcanfestiva_unix.a'
is built only if you build examples too.

Test case:

$ ./configure --timers=unix --can=socket --target=unix
$ make canfestival

...

no errors but 'libcanfestival_unix.a' is not built:
$ find . -name "*.a"
./src/libcanfestival.a

Changing line 90 of 'drivers/unix/Makefile.in' to:
#driver: $(OBJS)
driver: libcanfestival_$(TARGET).a

solves the problem:

$ ./configure --timers=unix --can=socket --target=unix
$ make canfestival

...

$ find . -name "*.a"
./drivers/unix/libcanfestival_unix.a
./src/libcanfestival.a
<HTML>
<BODY>
<CENTER>
<IMG SRC="canfestival.gif">
<BR><BR>
<font size="3">CanFestival is an OpenSource (LGPL) CANOpen framework.</font>
<BR><BR>
<a href="http://canfestival.sourceforge.net">http://canfestival.sourceforge.net</a>
<BR><BR>
Copyright �: Edouard TISSERANT, Francis DUPIN and Laurent BESSARD
<BR><BR>
Version: CAN Festival 3.0
<BR><BR>
<TABLE border="0">
  <TR>
    <TD align="right" valign="top">
      Contributor :
    </TD>
    <TD align="left" valign="top">
      LIVIC<BR>
      <a href="http://www.inrets.fr/ur/livic">http://www.inrets.fr/ur/livic</a>
    </TD>
  </TR>
  <TR>
    <TD align="right" valign="top">
      Supported by :
    </TD>
  </TR>
</TABLE>
</CENTER>
</BODY>
</HTML>