diff options
author | Anton Kling <anton@kling.gg> | 2024-11-24 19:23:55 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-11-24 19:23:55 +0100 |
commit | 5fdba54196c7171ddebb29aef597b965a1b1ead1 (patch) | |
tree | bb4ac4398093c49bf2a83d34fb6f874baf00ae06 /userland/sh/Makefile | |
parent | bf89077e024790649ff2150a7659926129699d13 (diff) |
sh: Remove sh and use the "minibox" version instead
Diffstat (limited to 'userland/sh/Makefile')
-rw-r--r-- | userland/sh/Makefile | 13 |
1 files changed, 0 insertions, 13 deletions
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 |