diff options
author | Christian Hesse <mail@eworm.de> | 2020-11-25 11:59:20 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2020-11-25 11:59:20 +0100 |
commit | bc1f676317656a0f0b00d9c147c79d2248e61edb (patch) | |
tree | 6e75466bed52bdc8361c1a0107cd7cbbb81f5b56 | |
parent | c4464b4406c9fa5adbfbb72ff52b681d8ed044dd (diff) | |
download | mpd-notification-bc1f676317656a0f0b00d9c147c79d2248e61edb.tar.gz mpd-notification-bc1f676317656a0f0b00d9c147c79d2248e61edb.tar.zst |
Makefile: change order of compiler parameters
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -33,7 +33,7 @@ VERSION := 0.8.5 all: mpd-notification README.html mpd-notification: mpd-notification.c mpd-notification.h config.h version.h - $(CC) $(CFLAGS) $(LDFLAGS) -o mpd-notification mpd-notification.c + $(CC) mpd-notification.c $(CFLAGS) $(LDFLAGS) -o mpd-notification config.h: $(CP) config.def.h config.h |