summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2016-06-22 15:48:46 +0200
committerRobin Watts <robin.watts@artifex.com>2016-06-23 16:13:12 +0100
commit1b1a87a541d2dd964412fbf4f27433969bda1686 (patch)
tree352805b7aa66a2dc9e51b36681fcacdd3ba7e6d9 /Makefile
parent6e48c939dc9913a6af747d5b6961624551c8d90d (diff)
downloadmupdf-1b1a87a541d2dd964412fbf4f27433969bda1686.tar.xz
Update muraster tool and add it to the unix build.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4382f849..b69e7547 100644
--- a/Makefile
+++ b/Makefile
@@ -259,6 +259,12 @@ $(MUTOOL_LIB) : $(MUTOOL_OBJ)
$(MUTOOL) : $(MUTOOL_LIB) $(MUPDF_LIB) $(THIRD_LIB)
$(LINK_CMD)
+MURASTER := $(OUT)/muraster
+MURASTER_OBJ := $(addprefix $(OUT)/tools/, muraster.o)
+$(MURASTER_OBJ): $(FITZ_HDR)
+$(MURASTER) : $(MURASTER_OBJ) $(MUPDF_LIB) $(THIRD_LIB)
+ $(LINK_CMD)
+
MJSGEN := $(OUT)/mjsgen
MJSGEN_OBJ := $(addprefix $(OUT)/tools/, mjsgen.o)
$(MUTOOL_OBJ): $(FITZ_HDR) $(PDF_HDR)
@@ -306,7 +312,7 @@ endif
MUVIEW := $(MUVIEW_X11) $(MUVIEW_WIN32) $(MUVIEW_GLFW)
MUVIEW_CURL := $(MUVIEW_X11_CURL) $(MUVIEW_WIN32_CURL)
-INSTALL_APPS := $(MUTOOL) $(MUVIEW) $(MUJSTEST) $(MUVIEW_CURL)
+INSTALL_APPS := $(MUTOOL) $(MUVIEW) $(MURASTER) $(MUJSTEST) $(MUVIEW_CURL)
# --- Examples ---