summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2013-06-12 13:46:21 +0200
committerTor Andersson <tor.andersson@artifex.com>2013-06-18 00:06:46 +0200
commit03e5755b93e90cc4c09daad4c79b6016bf4ce43c (patch)
treed2992e30fcddf864ad64bd026884e79d92903977 /Makefile
parentb695c87abcdbe0ddc35c5e3a7ee8f5f58ee577f1 (diff)
downloadmupdf-03e5755b93e90cc4c09daad4c79b6016bf4ce43c.tar.xz
Move header files into separate include directory.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 6ec1e1d7..21dd4528 100644
--- a/Makefile
+++ b/Makefile
@@ -12,7 +12,7 @@ default: all
# Do not specify CFLAGS or LIBS on the make invocation line - specify
# XCFLAGS or XLIBS instead. Make ignores any lines in the makefile that
# set a variable that was set on the command line.
-CFLAGS += $(XCFLAGS) -Ifitz -Ipdf -Ixps -Icbz -Iimage -Iucdn -Iscripts
+CFLAGS += $(XCFLAGS) -Iinclude -Iucdn -Iscripts
LIBS += $(XLIBS) -lm
include Makerules
@@ -58,11 +58,11 @@ RM_CMD = $(QUIET_RM) rm -f $@
# --- Rules ---
-FITZ_HDR := fitz/fitz.h fitz/fitz-internal.h
-MUPDF_HDR := $(FITZ_HDR) pdf/mupdf.h pdf/mupdf-internal.h
-MUXPS_HDR := $(FITZ_HDR) xps/muxps.h xps/muxps-internal.h
-MUCBZ_HDR := $(FITZ_HDR) cbz/mucbz.h
-MUIMAGE_HDR := $(FITZ_HDR) image/muimage.h
+FITZ_HDR := include/mupdf/fitz.h include/mupdf/fitz-internal.h
+MUPDF_HDR := $(FITZ_HDR) include/mupdf/pdf.h include/mupdf/pdf-internal.h
+MUXPS_HDR := $(FITZ_HDR) include/mupdf/xps.h include/mupdf/xps-internal.h
+MUCBZ_HDR := $(FITZ_HDR) include/mupdf/cbz.h
+MUIMAGE_HDR := $(FITZ_HDR) include/mupdf/image.h
$(OUT) $(GEN) :
$(MKDIR_CMD)