From 6718c24cafdf4966003593fe8a8f85a485de8735 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Wed, 25 Nov 2020 12:12:15 +0100 Subject: Makefile: change order of compiler parameters --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') 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 -- cgit v1.2.3-54-g00ecf