aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2020-11-25 12:12:15 +0100
committerGravatar Christian Hesse <mail@eworm.de>2020-11-25 12:12:15 +0100
commit6718c24cafdf4966003593fe8a8f85a485de8735 (patch)
tree4a494652912a9ab57c0bd482eb540e31ebb96d98 /Makefile
parent2e383c533c41cbfb37f65db50e5a76a5437b01bc (diff)
downloadnthash-6718c24cafdf4966003593fe8a8f85a485de8735.tar.gz
nthash-6718c24cafdf4966003593fe8a8f85a485de8735.tar.zst
Makefile: change order of compiler parameters
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c743093..c09aaf3 100644
--- a/Makefile
+++ b/Makefile
@@ -24,7 +24,7 @@ VERSION := 0.1.6
all: nthash README.html
nthash: nthash.c
- $(CC) $(CFLAGS) $(LDFLAGS) -o nthash nthash.c
+ $(CC) nthash.c $(CFLAGS) $(LDFLAGS) -o nthash
README.html: README.md
$(MD) README.md > README.html