diff options
author | Anton Kling <anton@kling.gg> | 2023-11-06 20:55:03 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2023-11-06 20:55:03 +0100 |
commit | 2753031a63117fd9de2d189d6731b4de8dd94769 (patch) | |
tree | d7318d37e952a093c5202834ad9353bd5d9b1894 /userland/cat/Makefile | |
parent | f605d8538fde29e29420180746476802f3198144 (diff) |
Userland: Remove old coreutil applications that have moved to minibox
Diffstat (limited to 'userland/cat/Makefile')
-rw-r--r-- | userland/cat/Makefile | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/userland/cat/Makefile b/userland/cat/Makefile deleted file mode 100644 index b45fae9..0000000 --- a/userland/cat/Makefile +++ /dev/null @@ -1,10 +0,0 @@ -CC="/home/anton/opt/cross/bin/i686-elf-gcc" -CFLAGS = -ggdb -ffreestanding -O0 -Wall -Wextra -pedantic -mgeneral-regs-only -Wimplicit-fallthrough -BINS=cat -all: $(BINS) - -cat.o: cat.c - $(CC) $(CFLAGS) -L../libc/ -lc -c cat.c -I../libc/ - -cat: cat.o - $(CC) -shared -o cat -ffreestanding -nostdlib $(CFLAGS) cat.o -L../libc/ -lc -lgcc #-L../libc/c.a |