From 0ec7d10a675e8d778f999a158cc46c549e55c2ed Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Fri, 28 Jun 2019 12:04:19 +0200 Subject: Makefile: change order of compiler parameters For whatever reason this is required for *ubuntu distributions... Fixes #1 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 04826c3..0fa8c54 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,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}) > $@ udp514-journal: udp514-journal.c udp514-journal.h version.h - $(CC) $(CFLAGS) $(LDFLAGS) -o udp514-journal udp514-journal.c + $(CC) udp514-journal.c $(CFLAGS) $(LDFLAGS) -o udp514-journal README.html: README.md $(MD) README.md > README.html -- cgit v1.2.3-54-g00ecf