aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2019-08-22 10:35:26 -0400
committerKevin O'Connor <kevin@koconnor.net>2019-08-22 10:35:26 -0400
commit69fc1e63b4c240a2e8d36736b551140db8acc08b (patch)
tree884bf739368f4881440ab57add3a4e1b213f7d0a /src
parent1022729a2adbeeb985848e82bb07f7af4d079c06 (diff)
downloadkutter-69fc1e63b4c240a2e8d36736b551140db8acc08b.tar.gz
kutter-69fc1e63b4c240a2e8d36736b551140db8acc08b.tar.xz
kutter-69fc1e63b4c240a2e8d36736b551140db8acc08b.zip
Makefile: Translate null characters to newline characters in ctr requests
Store the CTR requests in compile_time_request.txt with the null characters removed. This makes it slightly easier to inspect the CTR conversions. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src')
-rw-r--r--src/ctr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ctr.h b/src/ctr.h
index 959cef45..b3c14ff1 100644
--- a/src/ctr.h
+++ b/src/ctr.h
@@ -2,8 +2,8 @@
#define __CTR_H
// Definitions for creating compile time requests. The DECL_CTR macro
// produces requests (text strings) that are placed in a special
-// section of the intermediate object files. The requests are then
-// extracted during the build and passed to scripts/buildcommand.py.
+// section of the intermediate object files (*.o). The build extracts
+// these strings and places them in out/compile_time_requests.txt.
// The scripts/buildcommand.py code then generates
// out/compile_time_request.c from these requests.