From 5fdba54196c7171ddebb29aef597b965a1b1ead1 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Sun, 24 Nov 2024 19:23:55 +0100 Subject: sh: Remove sh and use the "minibox" version instead --- userland/sh/Makefile | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 userland/sh/Makefile (limited to 'userland/sh/Makefile') diff --git a/userland/sh/Makefile b/userland/sh/Makefile deleted file mode 100644 index 3e82b9e..0000000 --- a/userland/sh/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -CC="i686-sb-gcc" -CFLAGS = -ggdb -ffreestanding -O0 -Wall -Wextra -pedantic -mgeneral-regs-only -Wimplicit-fallthrough -fsanitize=shift,signed-integer-overflow,bounds -BINS=sh -all: $(BINS) - -sh.o: sh.c - $(CC) $(CFLAGS) -L../libc/ -lc -c sh.c -I../libc/ -# $(CC) $(CFLAGS) ../libc/libc.o ../libc/crt0.o sh.c -I../libc/ - -clean: - rm sh sh.o -sh: sh.o - $(CC) -shared -o sh -ffreestanding -nostdlib $(CFLAGS) sh.o -L../libc/ -lc -lgcc #-L../libc/c.a -- cgit v1.2.3