4a081501d8
- bios/conio/env/errno/gfx/io/mem/mouse/stdio/stdlib/string/sys/time/ video разложены по модулям: общие статики и helpers — в internal _-модулях (_conio.h/_mouse.h/_gfx.h/_palette.h/_atexit.h/_time.h) - lib/Makefile: LIBC_C = wildcard libc/*/*.c — гранулярность файлов = гранулярность DCE линкера - эффект _CODE: gfx_text 6986→2568 Б, gfx_mous −1745, gfx_demo/d16 −542; ранее timedir −3270, ls −3098, stattest −2995 - комментарии оставшихся модулей переведены на русский; puts: убран мёртвый pchars; videomode_raw разложен на get/set - docs/libc-split-asm-cases.md — правила asm-связок между модулями; docs/libc-roadmap.md — план этапа - восстановлен examples/mdview/SAMPLE.MD (нужен make floppy) Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
66 lines
2.2 KiB
Makefile
66 lines
2.2 KiB
Makefile
# Build lib/libsprinter.lib — the Sprinter target libc archive.
|
|
#
|
|
# Includes all libc/*.c modules plus the runtime helpers that get
|
|
# auto-pulled by SDCC's codegen (heap for malloc, bank trampolines for
|
|
# __banked). The crt0 family is NOT in the lib — they are always
|
|
# explicitly linked, never DCE-eligible.
|
|
#
|
|
# Each .c file becomes its own .rel inside the archive. The linker
|
|
# pulls only those .rel files whose exported symbols are referenced,
|
|
# giving free dead-code elimination at module granularity.
|
|
|
|
PROJ_ROOT := $(abspath $(CURDIR)/..)
|
|
SDCC_BIN := $(PROJ_ROOT)/third_party/sdcc/bin
|
|
SDCC := $(SDCC_BIN)/sdcc
|
|
SDAR := $(SDCC_BIN)/sdar
|
|
SDASZ80 := $(SDCC_BIN)/sdasz80
|
|
|
|
INC := -I$(PROJ_ROOT)/libc/include
|
|
CC_FLAGS := -mz80 --no-std-crt0 --std-c99 --opt-code-size $(INC)
|
|
|
|
BUILD := $(PROJ_ROOT)/lib/build
|
|
|
|
# All libc C modules — every .c under libc/<area>/ becomes its own .rel.
|
|
# One PUBLIC function per file (see docs/libc-split-asm-cases.md): the
|
|
# linker pulls whole .rel modules, so file granularity == DCE granularity.
|
|
LIBC_C := $(patsubst $(PROJ_ROOT)/%,%,$(wildcard $(PROJ_ROOT)/libc/*/*.c))
|
|
|
|
# Runtime modules to bundle (pulled by symbol references from libc-using code).
|
|
# NOTE: runtime/bank.s is NOT bundled — its trampoline depends on the banking
|
|
# window (W1 for BIG, W3 for HUGE) which is decided per-build by sprinter-cc.
|
|
# That tool assembles bank.s on each banked build with the right BANK_W1 flag.
|
|
RUNTIME_S := runtime/heap.s
|
|
|
|
LIBC_RELS := $(patsubst libc/%.c,$(BUILD)/%.rel,$(LIBC_C))
|
|
RUNTIME_RELS := $(patsubst runtime/%.s,$(BUILD)/%.rel,$(RUNTIME_S))
|
|
|
|
ALL_RELS := $(LIBC_RELS) $(RUNTIME_RELS)
|
|
|
|
LIB := sprinter.lib
|
|
|
|
all: $(LIB)
|
|
|
|
# Pattern rule for C modules — preserves the libc/io|mem|stdio path
|
|
# so .rel members keep their natural names inside the archive.
|
|
$(BUILD)/%.rel: $(PROJ_ROOT)/libc/%.c
|
|
@mkdir -p $(dir $@)
|
|
$(SDCC) $(CC_FLAGS) -c -o $@ $<
|
|
|
|
# Runtime .s → .rel
|
|
$(BUILD)/%.rel: $(PROJ_ROOT)/runtime/%.s
|
|
@mkdir -p $(dir $@)
|
|
$(SDASZ80) -o $@ $<
|
|
|
|
# Archive — sdar with `rcs` = replace/create/symtab.
|
|
$(LIB): $(ALL_RELS)
|
|
rm -f $@
|
|
$(SDAR) -rcs $@ $(ALL_RELS)
|
|
@echo
|
|
@echo " Built $@ with $(words $(ALL_RELS)) modules:"
|
|
@$(SDAR) -t $@ | sed 's/^/ /'
|
|
|
|
clean:
|
|
rm -rf $(BUILD) $(LIB)
|
|
|
|
.PHONY: all clean
|