mirror of
https://github.com/mmueller41/genode.git
synced 2026-01-21 12:32:56 +01:00
This version of MuPDF will use Genode's framebuffer session and input session to display a PDF file. At the current stage, the program is merely a skeleton that compiles and starts. Neither the actual rendering not the response to user input are implemented. To try it out, there is a ready-to-use run script at 'libports/run/mupdf.run'.
9 lines
205 B
Makefile
9 lines
205 B
Makefile
MUPDF_DIR = $(REP_DIR)/contrib/mupdf-0.9
|
|
TARGET = mupdf
|
|
SRC_C = pdfapp.c
|
|
SRC_CC = main.cc
|
|
LIBS = libc mupdf libc_log libc_rom
|
|
INC_DIR += $(MUPDF_DIR)/apps
|
|
|
|
vpath pdfapp.c $(MUPDF_DIR)/apps
|