aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2021-08-28 14:23:00 -0300
committerEuAndreh <eu@euandre.org>2021-08-28 14:23:00 -0300
commit67baa4e815864f86acee11b0d882e37c9f4eb20a (patch)
tree7b8bc74015fed1189defae2f88a90c881222b270
parentMakefile: Move libgistatic.a to the beginning, following the natural progress... (diff)
downloadgistatic-67baa4e815864f86acee11b0d882e37c9f4eb20a.tar.gz
gistatic-67baa4e815864f86acee11b0d882e37c9f4eb20a.tar.xz
Makefile: Be more explicit about empty lines on the generated src/config.h
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
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' >> $@