From 1c0dfd67e7c181951f490f4e58693582f2c3871a Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Sun, 14 Sep 2025 15:01:34 -0400 Subject: build: Do not have per subsystem libs Signed-off-by: Ian Moffett --- src/sys/lib/Makefile | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 src/sys/lib/Makefile (limited to 'src/sys/lib/Makefile') diff --git a/src/sys/lib/Makefile b/src/sys/lib/Makefile deleted file mode 100644 index 46e4aec..0000000 --- a/src/sys/lib/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -include ../conf/sys.mk - -.SILENT: -override PROMPT := printf "%s\t\t%s\n" - -TARGET_LIB = ../target/libstring.a -CFLAGS = -I../include/ -I../include/lib/ -I../target/header/ $(MI_CFLAGS) -O0 -CFILES = $(shell find . -name "*.c") - -DEPS = $(CFILES:.c=.d) -OBJECTS = $(CFILES:%.c=%.o) - -.PHONY: all -all: $(OBJECTS) - $(PROMPT) " MI.AR " $< - ar rcs $(TARGET_LIB) $(OBJECTS) - --include $(DEPS) -%.o: %.c - $(PROMPT) " MI.CC " $< - $(CC) -c $(CFLAGS) $< -o $@ - -.PHONY: clean -clean: - rm -f $(DEPS) $(OBJECTS) -- cgit v1.2.3