aboutsummaryrefslogtreecommitdiff
path: root/gnu-taler-error-codes/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'gnu-taler-error-codes/Makefile')
-rw-r--r--gnu-taler-error-codes/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu-taler-error-codes/Makefile b/gnu-taler-error-codes/Makefile
index b95669f..4601f61 100644
--- a/gnu-taler-error-codes/Makefile
+++ b/gnu-taler-error-codes/Makefile
@@ -15,8 +15,11 @@ prep:
15combined.tmp: registry.rec prep 15combined.tmp: registry.rec prep
16 recsel -t TalerErrorCode -j HttpStatus -p Description,Name,Value,HttpStatus,HttpStatus.Value,HttpStatus.Identifier ../http-status-codes/registry.rec registry.rec > $@ 16 recsel -t TalerErrorCode -j HttpStatus -p Description,Name,Value,HttpStatus,HttpStatus.Value,HttpStatus.Identifier ../http-status-codes/registry.rec registry.rec > $@
17 17
18taler-error-codes.h.tmp: combined.tmp h.template 18combined-indents.tmp: combined.tmp
19 ../format.sh h.template < combined.tmp > $@ 19 sed 's/\+ /\+ * /g' combined.tmp > combined-indents.tmp
20
21taler-error-codes.h.tmp: combined-indents.tmp h.template
22 ../format.sh h.template < combined-indents.tmp > $@
20 23
21taler-error-codes.h: h.header taler-error-codes.h.tmp h.footer 24taler-error-codes.h: h.header taler-error-codes.h.tmp h.footer
22 cat $^ > $@ 25 cat $^ > $@