Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revisionBoth sides next revision
internal:demos [2016/11/08 18:08] – [Adding new sac-files/directories] sbsinternal:demos [2016/11/08 18:11] sbs
Line 21: Line 21:
 === Please be Aware === === Please be Aware ===
   *If your file depends on a module or a class that is **not** in the standard library, you need to ensure the compiler will find that library, either through ''sac2crc'', ''SAC2CFLAGS'', or within ''$(LIBTARGETDIR)''.   *If your file depends on a module or a class that is **not** in the standard library, you need to ensure the compiler will find that library, either through ''sac2crc'', ''SAC2CFLAGS'', or within ''$(LIBTARGETDIR)''.
-  *If the module or class is locally available and you want ''make'' to be aware of that dependency **you* have to provide that dependency by hand. For example you could add a line such as <code make>+  *If the module or class is locally available and you want ''make'' to be aware of that dependency **you** have to provide that dependency manually. For example you could add a line such as <code make>
 mandelbrot_simple: seq/libFractal_tier1Mod$(SHARED_LIB_EXT) mandelbrot_simple: seq/libFractal_tier1Mod$(SHARED_LIB_EXT)
-</code> +</code>Note here, that ''$(LIBTARGETDIR)/host/'' have to be omited.
 </callout> </callout>