diff options
author | Ian Moffett <ian@osmora.org> | 2025-09-13 20:10:17 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-09-13 20:10:17 -0400 |
commit | 47ab28465a0d69e9ac973b7485ac447a0f565d8e (patch) | |
tree | d5dc7a87645533bccb85f8c86749e3e325e5c7f8 /src/sys/kern/Makefile | |
parent | 15dfcd84a1330d9b53bd84db38c917c79412836d (diff) |
project: 'kern' -> 'os'
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/sys/kern/Makefile')
-rw-r--r-- | src/sys/kern/Makefile | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/src/sys/kern/Makefile b/src/sys/kern/Makefile deleted file mode 100644 index dda389b..0000000 --- a/src/sys/kern/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -include ../conf/sys.mk - -.SILENT: -override PROMPT := printf "%s\t\t%s\n" - -TARGET = ../target/libkern.a -CFLAGS = -I../include/ -I../include/lib/ -I../target/header/ $(MI_CFLAGS) -CFILES = $(shell find . -name "*.c") - -DEPS = $(CFILES:.c=.d) -OBJECTS = $(CFILES:%.c=%.o) - -.PHONY: all -all: $(OBJECTS) - $(PROMPT) " MI.AR " $< - ar rcs $(TARGET) $(OBJECTS) - --include $(DEPS) -%.o: %.c - $(PROMPT) " MI.CC " $< - $(CC) -c $(CFLAGS) $< -o $@ - -.PHONY: clean -clean: - rm -f $(DEPS) $(OBJECTS) |