Reorder linker flags as suggested by Lukas Fleischer

This commit is contained in:
Wolfgang Hommel
2012-02-05 00:07:54 +01:00
parent b067cdce2b
commit d8053c280c

View File

@@ -69,7 +69,7 @@ ${OBJ}: faketime.c
${CC} -o $@ -c ${CFLAGS} ${EXTRA_FLAGS} $<
lib%.so.${SONAME}: %.o
${CC} -o $@ -Wl,-soname,$@ ${LDFLAGS} $<
${CC} -o $@ -Wl,-soname,$@ $< ${LDFLAGS}
clean:
@rm -f ${OBJ} ${LIBS}