aboutsummaryrefslogtreecommitdiff
path: root/libs/libtxt/Makefile
blob: d0737117f9836e1248f0ccd693d6967fece4eeb5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# MIT License, Copyright (c) 2020 Marvin Borner

COBJS = keymap.o #xml.o html.o

CFLAGS = $(CFLAGS_DEFAULT) -I$(LIBS) -I$(LIBS)/libc/inc/ -pie -fPIE -fPIC -DUSER

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