aboutsummaryrefslogtreecommitdiff
path: root/libgui/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'libgui/Makefile')
-rw-r--r--libgui/Makefile25
1 files changed, 0 insertions, 25 deletions
diff --git a/libgui/Makefile b/libgui/Makefile
deleted file mode 100644
index 166a3c0..0000000
--- a/libgui/Makefile
+++ /dev/null
@@ -1,25 +0,0 @@
-# MIT License, Copyright (c) 2020 Marvin Borner
-
-COBJS = psf.o \
- bmp.o \
- png.o \
- gfx.o \
- gui.o \
- msg.o
-CC = ccache ../cross/opt/bin/i686-elf-gcc
-LD = ccache ../cross/opt/bin/i686-elf-ld
-AR = ccache ../cross/opt/bin/i686-elf-ar
-
-CFLAGS = $(CFLAGS_DEFAULT) -Iinc/ -I../libc/inc/ -fPIE -Duserspace
-
-all: libgui
-
-%.o: %.c
- @$(CC) -c $(CFLAGS) $< -o $@
-
-libgui: $(COBJS)
- @mkdir -p ../build/
- @$(AR) rcs ../build/libgui.a $+
-
-clean:
- @find . -name "*.o" -type f -delete