diff options
author | Christian Hesse <mail@eworm.de> | 2020-11-25 12:10:07 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2020-11-25 12:10:07 +0100 |
commit | 058659456eea1b455ec50a11bcdf4b5bef22e581 (patch) | |
tree | d2474626a547d543e58fea52c209d75c276e1a08 | |
parent | c8d55daf51176410dfac65d613b1ae7bd26461a2 (diff) | |
download | extract-artwork-058659456eea1b455ec50a11bcdf4b5bef22e581.tar.gz extract-artwork-058659456eea1b455ec50a11bcdf4b5bef22e581.tar.zst |
Makefile: change order of compiler parameters
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |