From: uz Date: Sat, 4 Dec 2010 18:09:50 +0000 (+0000) Subject: Reorder -o and -t on the linker command line. X-Git-Tag: V2.13.3~571 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=e61173fe9e59eda00f10e33aff5827b92c520ab1;p=cc65 Reorder -o and -t on the linker command line. git-svn-id: svn://svn.cc65.org/cc65/trunk@4885 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/samples/Makefile b/samples/Makefile index 44276154d..a5bf9acef 100644 --- a/samples/Makefile +++ b/samples/Makefile @@ -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) # --------------------------------------------------------------------------