diff options
Diffstat (limited to 'Jamfile')
-rw-r--r-- | Jamfile | 20 |
1 files changed, 9 insertions, 11 deletions
@@ -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 ; |