aboutsummaryrefslogtreecommitdiff
path: root/libtxt/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'libtxt/Makefile')
-rw-r--r--libtxt/Makefile20
1 files changed, 0 insertions, 20 deletions
diff --git a/libtxt/Makefile b/libtxt/Makefile
deleted file mode 100644
index d0d4c17..0000000
--- a/libtxt/Makefile
+++ /dev/null
@@ -1,20 +0,0 @@
-# MIT License, Copyright (c) 2020 Marvin Borner
-
-COBJS = keymap.o #xml.o html.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/ -I../libgui/inc/ -fPIE -Duserspace
-
-all: libtxt
-
-%.o: %.c
- @$(CC) -c $(CFLAGS) $< -o $@
-
-libtxt: $(COBJS)
- @mkdir -p ../build/
- @$(AR) rcs ../build/libtxt.a $+
-
-clean:
- @find . -name "*.o" -type f -delete