aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2020-11-25 12:09:16 +0100
committerGravatar Christian Hesse <mail@eworm.de>2020-11-25 12:09:16 +0100
commiteb31e002175b40ccfaf4d9c47961933546c853aa (patch)
tree84aa06b99eec641b4c19e8d3568293aba2e081d4
parent9da1e8d210921ee3b700ecec0e58e556b6b16b03 (diff)
downloaddyndhcpd-eb31e002175b40ccfaf4d9c47961933546c853aa.tar.gz
dyndhcpd-eb31e002175b40ccfaf4d9c47961933546c853aa.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 542bcc5..d6d69e4 100644
--- a/Makefile
+++ b/Makefile
@@ -24,7 +24,7 @@ version.h: $(wildcard .git/HEAD .git/index .git/refs/tags/*) Makefile
printf "#ifndef VERSION\n#define VERSION \"%s\"\n#endif\n" $(shell git describe --long 2>/dev/null || echo ${VERSION}) > $@
dyndhcpd: dyndhcpd.c dyndhcpd.h config.h version.h
- $(CC) $(CFLAGS) $(LDFLAGS) -o dyndhcpd dyndhcpd.c
+ $(CC) dyndhcpd.c $(CFLAGS) $(LDFLAGS) -o dyndhcpd
README.html: README.md
$(MD) README.md > README.html