From 4c68e8b9d7565eecdda712ddf1b64d30dfe2722a Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Wed, 18 May 2005 09:41:20 +0200 Subject: constify static font data so it ends up in text segment --- Jamfile | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) (limited to 'Jamfile') 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 ; -- cgit v1.2.3