diff options
author | EuAndreh <eu@euandre.org> | 2021-08-28 14:23:00 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-08-28 14:23:00 -0300 |
commit | 67baa4e815864f86acee11b0d882e37c9f4eb20a (patch) | |
tree | 7b8bc74015fed1189defae2f88a90c881222b270 | |
parent | Makefile: Move libgistatic.a to the beginning, following the natural progress... (diff) | |
download | gistatic-67baa4e815864f86acee11b0d882e37c9f4eb20a.tar.gz gistatic-67baa4e815864f86acee11b0d882e37c9f4eb20a.tar.xz |
Makefile: Be more explicit about empty lines on the generated src/config.h
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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' >> $@ |