blob: 087b54c0d01600e6c89760cdb49a211086c1d610 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# 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
WARNINGS = -Wall -Wextra -pedantic-errors -Wshadow -Wpointer-arith -Wwrite-strings -Wredundant-decls -Wnested-externs -Wno-long-long
CFLAGS = $(WARNINGS) -nostdlib -nostdinc -fno-builtin -mgeneral-regs-only -std=c99 -m32 -Iinc/ -I../libc/inc/ -I../libgui/inc/ -fPIE -Duserspace -Ofast
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
|