diff options
author | Christian Hesse <mail@eworm.de> | 2020-11-25 12:12:15 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2020-11-25 12:12:15 +0100 |
commit | 6718c24cafdf4966003593fe8a8f85a485de8735 (patch) | |
tree | 4a494652912a9ab57c0bd482eb540e31ebb96d98 | |
parent | 2e383c533c41cbfb37f65db50e5a76a5437b01bc (diff) | |
download | nthash-6718c24cafdf4966003593fe8a8f85a485de8735.tar.gz nthash-6718c24cafdf4966003593fe8a8f85a485de8735.tar.zst |
Makefile: change order of compiler parameters
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |