0dedc4dac8
- prebuild.
11 lines
349 B
Makefile
11 lines
349 B
Makefile
# Build mdview.exe — Markdown viewer for Sprinter.
|
|
#
|
|
# small memory mode: code in W1, data/stack/heap in W2 (32 KB total).
|
|
# W3 stays free for the file buffer (EMM-mapped) and Phase 3+ render cache.
|
|
|
|
PROJ_ROOT := $(abspath $(CURDIR)/../..)
|
|
EXAMPLE := mdview
|
|
MEMORY := small
|
|
EXTRA_DATA := SAMPLE.MD PLAN_866.md
|
|
include $(PROJ_ROOT)/app.mk
|