>> "SB" == SIGOURE Benoit
<tsuna(a)lrde.epita.fr> writes:
Fix the build process: don't use symlinks.
Never use symlinks, they always introduce problems in builds.
PRISM.def: $(top_builddir)/src/syn/prism/PRISM.def
rm -f $@
- $(LN_S) $^ $@
+ cp -f $^ $@
Why don't you use $< when you mean that? That's confusing.