From 67baa4e815864f86acee11b0d882e37c9f4eb20a Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Sat, 28 Aug 2021 14:23:00 -0300 Subject: Makefile: Be more explicit about empty lines on the generated src/config.h --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c4287f4..9f8d87f 100644 --- a/Makefile +++ b/Makefile @@ -48,7 +48,8 @@ gistatic-tests: $(t-objects) src/config.h: printf '#ifndef GISTATIC_CONFIG_H\n' >> $@ - printf '#define GISTATIC_CONFIG_H\n\n' >> $@ + printf '#define GISTATIC_CONFIG_H\n' >> $@ + printf '\n' >> $@ printf '#define _POSIX_C_SOURCE 200809L\n' >> $@ printf '#define VERSION "$(VERSION)"\n' >> $@ printf '#define DATE "$(DATE)"\n' >> $@ -- cgit v1.2.3