]> git.sur5r.net Git - cc65/commitdiff
Reorder -o and -t on the linker command line.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 4 Dec 2010 18:09:50 +0000 (18:09 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 4 Dec 2010 18:09:50 +0000 (18:09 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@4885 b7a2c559-68d2-44c3-8de9-860c34a00d81

samples/Makefile

index 44276154d8138e148f64cb1c19b2456ee8d4acf5..a5bf9acefe3ae8fe2697176a87194c43e3e26a55 100644 (file)
@@ -64,7 +64,7 @@ C1541         = c1541
        @$(AS) $(MY_ASM) -t $(SYS) $<
 
 .o:
-       @$(LD) -t $(SYS) -m $(basename $@).map -o $@ $^ $(CLIB)
+       @$(LD) -o $@ -t $(SYS) -m $(basename $@).map $^ $(CLIB)
 
 
 # --------------------------------------------------------------------------