aboutsummaryrefslogtreecommitdiff
path: root/lib/Makefile
diff options
context:
space:
mode:
authorMarvin Borner2020-08-15 17:42:36 +0200
committerMarvin Borner2020-08-15 17:42:36 +0200
commit9f16b032d38613ca95e321e1d1e652c43129c68b (patch)
tree33f71a84f60b496ed31a128ec542c5341c754b0d /lib/Makefile
parent32b8722128dfb4ca9e814940a23c2b22a283bb12 (diff)
Added libgui
Diffstat (limited to 'lib/Makefile')
-rw-r--r--lib/Makefile36
1 files changed, 0 insertions, 36 deletions
diff --git a/lib/Makefile b/lib/Makefile
deleted file mode 100644
index f4286ae..0000000
--- a/lib/Makefile
+++ /dev/null
@@ -1,36 +0,0 @@
-# MIT License, Copyright (c) 2020 Marvin Borner
-
-# TODO: Remove serial and cpu from libc?
-COBJS = str.o \
- mem.o \
- math.o \
- conv.o \
- print.o \
- serial.o \
- cpu.o \
- sys.o \
- list.o
-CC = ../cross/opt/bin/i686-elf-gcc
-LD = ../cross/opt/bin/i686-elf-ld
-OC = ../cross/opt/bin/i686-elf-ar
-
-# Flags to make the binary smaller TODO: Remove after indirect pointer support!
-CSFLAGS = -mpreferred-stack-boundary=2 -fno-asynchronous-unwind-tables -Os
-
-CFLAGS = $(CSFLAGS) -Wall -Wextra -nostdlib -nostdinc -ffreestanding -fno-builtin -mgeneral-regs-only -std=c99 -m32 -pedantic-errors -Iinc/
-
-%.o: %.c
- @$(CC) -c $(CFLAGS) $< -o $@
-
-libc: CFLAGS += -Duserspace -fPIE
-libc: $(COBJS)
- @mkdir -p ../build/
- @$(AR) qc ../build/libc.a $+
-
-libk: CFLAGS += -Dkernel
-libk: $(COBJS)
- @mkdir -p ../build/
- @$(AR) qc ../build/libk.a $+
-
-clean:
- @find . -name "*.o" -type f -delete