Reorder -o and -t on the linker command line.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4885 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2010-12-04 18:09:50 +00:00
parent e0d3936705
commit e61173fe9e

View 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)
# --------------------------------------------------------------------------