Patch to correct the linkorder in the make files to make the --as-needed

ldflag work. By Mario Fetka.


git-svn-id: svn://svn.cc65.org/cc65/trunk@4838 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2010-11-07 11:34:51 +00:00
parent f1ce44edfe
commit 6c0a9c0438
10 changed files with 10 additions and 10 deletions

View File

@@ -53,7 +53,7 @@ all: depend
endif
$(EXE): $(OBJS) $(LIBS)
$(CC) $^ $(LDFLAGS) -o $@
$(CC) $(LDFLAGS) $^ -o $@
@if [ $(OS2_SHELL) ] ; then $(EBIND) $(EXE) ; fi
.PHONY: chips