Fix bug when using separate build directory to create symbolic link
authorHugo Villeneuve <hugo@hugovil.com>
Mon, 2 Dec 2013 04:33:18 +0000 (23:33 -0500)
committerHugo Villeneuve <hugo@hugovil.com>
Mon, 2 Dec 2013 04:33:18 +0000 (23:33 -0500)
tests/Makefile.am

index 82863a6..6caffd7 100644 (file)
@@ -25,13 +25,14 @@ TESTS = \
 
 # Tell make how to generate a .sh file after a .hex file is generated:
 .hex.sh:
-       @ln -sf opcodes.sh $@
+       @ln -sf $(srcdir)/opcodes.sh $@
 
 # Tell make how to generate a .hex file from a .asm source file.
 # Warning: make distcheck will fail because asem doesn't have option to specify
 # output filename (and path):
 .asm.hex:
        $(AS51) $<
+
 else
 TESTS =
 endif