blob: 62a2afbc61787d92b9bc693a13f3c710011f59ae (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# MIT License, Copyright (c) 2020 Marvin Borner
COBJS = keymap.o
CC = ../cross/opt/bin/i686-elf-gcc
LD = ../cross/opt/bin/i686-elf-ld
AR = ../cross/opt/bin/i686-elf-ar
CFLAGS = -Wall -Wextra -nostdlib -nostdinc -fno-builtin -mgeneral-regs-only -std=c99 -m32 -pedantic-errors -Iinc/ -I../libc/inc/ -fPIE -Duserspace -Ofast
all: libgui clean
%.o: %.c
@$(CC) -c $(CFLAGS) $< -o $@
libgui: $(COBJS)
@mkdir -p ../build/
@$(AR) rcs ../build/libtxt.a $+
clean:
@find . -name "*.o" -type f -delete
|