summaryrefslogtreecommitdiff
path: root/Jamfile
diff options
context:
space:
mode:
Diffstat (limited to 'Jamfile')
-rw-r--r--Jamfile20
1 files changed, 9 insertions, 11 deletions
diff --git a/Jamfile b/Jamfile
index 4680ed53..2b480bd6 100644
--- a/Jamfile
+++ b/Jamfile
@@ -69,7 +69,7 @@ rule WindRes
Clean clean : $(<) ;
}
-actions HexDump { xxd -i $(>) > $(<) }
+actions HexDump { xxd -i $(>) | sed -e 's/unsigned/const unsigned/' > $(<) }
actions WindRes { windres -i $(>) -o $(<) --include-dir=$(>:D) }
rule XCopy
@@ -263,16 +263,6 @@ Library libmupdf :
;
-
-# --------------------------------------------------------------------------
-
-SubDir TOP apps common ;
-
-Library libpdfapp :
- pdfapp.c
- ;
-
-
# --------------------------------------------------------------------------
#
# Build simple portable apps
@@ -300,6 +290,12 @@ for APP in $(APPLIST)
# Build non-portable GUI frontend apps
#
+SubDir TOP apps common ;
+
+Library libpdfapp :
+ pdfapp.c
+ ;
+
if $(OS) = MINGW
{
SubDir TOP apps windows ;
@@ -381,6 +377,8 @@ if $(OS) = MINGW
# Documenatation
#
+SubDir TOP ;
+
InstallFile $(BINDIR) : PUBLIC ;
InstallFile $(BINDIR) : CHANGES ;