From e61173fe9e59eda00f10e33aff5827b92c520ab1 Mon Sep 17 00:00:00 2001 From: uz Date: Sat, 4 Dec 2010 18:09:50 +0000 Subject: [PATCH] Reorder -o and -t on the linker command line. git-svn-id: svn://svn.cc65.org/cc65/trunk@4885 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- samples/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) # -------------------------------------------------------------------------- -- 2.39.5