commit 19e12c519f310ad975caba872972ea9bbfa59b2c
parent 4444e9d014fcc47e3e7210a9d9109678db619f4d
Author: oblique <psyberbits@gmail.com>
Date:   Wed, 30 Oct 2013 21:05:37 +0200
Makefile: move linking libraries after the object files
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -20,7 +20,7 @@ endif
 all: wificurse
 
 wificurse: $(OBJS)
-	$(CC) $(CFLAGS) $(LIBS) $(LDFLAGS) $(OBJS) -o $@
+	$(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) $(LIBS) -o $@
 
 %.o: %.c $(HDRS)
 	$(CC) $(CFLAGS) -c $< -o $@