aboutsummaryrefslogtreecommitdiff
path: root/scripts/manifest2header.awk
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/manifest2header.awk')
-rwxr-xr-xscripts/manifest2header.awk13
1 files changed, 13 insertions, 0 deletions
diff --git a/scripts/manifest2header.awk b/scripts/manifest2header.awk
new file mode 100755
index 0000000..15cd682
--- /dev/null
+++ b/scripts/manifest2header.awk
@@ -0,0 +1,13 @@
+#!/bin/awk -f
+BEGIN {
+ offset = 0
+ print "#pragma once"
+}
+1 {
+ print "#define HH_TM_"toupper($1)"_OFFSET "offset
+ print "#define HH_TM_"toupper($1)"_SIZE "$2
+ offset += $2
+}
+END {
+ print "#define HH_TM_SIZE "offset
+}