From 4521254ea51e5e854b835fdcda877e75b9711173 Mon Sep 17 00:00:00 2001 From: Matt Low Date: Wed, 16 Oct 2019 22:24:16 +0400 Subject: [PATCH] Change compile flag ordering --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 154b955..26b28b9 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ LDLIBS=-lpthread -lmpdclient OBJECTS = mpd_control.o mpd_control: $(OBJECTS) - $(CC) $(CFLAGS) $^ $(LDLIBS) -o $@ + $(CC) $(CFLAGS) $(LDLIBS) $^ -o $@ clean: rm $(OBJECTS)