aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2020-11-25 12:10:07 +0100
committerGravatar Christian Hesse <mail@eworm.de>2020-11-25 12:10:07 +0100
commit058659456eea1b455ec50a11bcdf4b5bef22e581 (patch)
treed2474626a547d543e58fea52c209d75c276e1a08
parentc8d55daf51176410dfac65d613b1ae7bd26461a2 (diff)
downloadextract-artwork-058659456eea1b455ec50a11bcdf4b5bef22e581.tar.gz
extract-artwork-058659456eea1b455ec50a11bcdf4b5bef22e581.tar.zst
Makefile: change order of compiler parameters
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c20ec11..fa7b155 100644
--- a/Makefile
+++ b/Makefile
@@ -19,7 +19,7 @@ VERSION := 0.0.2
all: extract-artwork README.html
extract-artwork: extract-artwork.c
- $(CC) $(CFLAGS) $(LDFLAGS) -o extract-artwork extract-artwork.c
+ $(CC) extract-artwork.c $(CFLAGS) $(LDFLAGS) -o extract-artwork
README.html: README.md
$(MD) README.md > README.html