From 521d01e8ad87e931af3e9a763cc84a6cf7fe5ee3 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Sun, 5 Dec 2021 09:47:21 -0800 Subject: Feat: basic string and memory functions Continue filling out the basic standard lib functions. Included prototypes of the str* and mem* families. Plan to add e(str|mem) and n(str|mem) variants as well. --- sys/rules.mk | 2 ++ 1 file changed, 2 insertions(+) (limited to 'sys/rules.mk') diff --git a/sys/rules.mk b/sys/rules.mk index 1cbe50e..3dbdd0a 100644 --- a/sys/rules.mk +++ b/sys/rules.mk @@ -27,6 +27,8 @@ RT3_OBJ := $(filter %.o, $(RT3_SRC:.c=.o)) RT3_OBJ := $(patsubst $(SYS_DIR)/rt/%, $(OBJ_DIR)/rt/%, $(RT3_OBJ)) $(RT1_OBJ): TCFLAGS=-fno-builtin -fno-stack-protector +$(RT1_OBJ): $(RT1_SRC) + $(RT1): $(SYS_DIR)/rt/$(ARCH)/rt1.s $(RT1_OBJ) @echo "AS rt1.a" @$(AS) $(AFLAGS) -o $(OBJ_DIR)/rt/rt1.o -c $< -- cgit v1.2.1