summaryrefslogtreecommitdiff
path: root/Jamfile
diff options
context:
space:
mode:
Diffstat (limited to 'Jamfile')
-rw-r--r--Jamfile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Jamfile b/Jamfile
index 3edd7771..83d242c8 100644
--- a/Jamfile
+++ b/Jamfile
@@ -136,7 +136,12 @@ Library libmupdf :
mupdf/interpret.c
;
-rule HexDump { DEPENDS $(<) : $(>) ; }
+rule HexDump
+{
+ DEPENDS $(<) : $(>) ;
+ Clean clean : $(<) ;
+}
+
actions HexDump
{
xxd -i $(>) | sed -e 's/data_//g;s/, /,/g' > $(<) ;