summaryrefslogtreecommitdiffstats
path: root/sw/z80/drivers/makefile
blob: 65ded58091279082652ac550368b57fe5e1596af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Drivers library

LIB     := build/drivers.a
SOURCES := $(wildcard *.c)
OBJECTS := $(patsubst %.c,build/%.rel,$(SOURCES))

CC := sdcc
AR := sdar
CFLAGS := -mz80 -Iinclude -I../arch/include -DDEBUG

.PHONY: dirs rebuild clean
$(LIB): $(OBJECTS)
	$(AR) vrcs $@ $(OBJECTS)

$(OBJECTS): build/%.rel: %.c $(SOURCES) dirs
	$(CC) $(CFLAGS) -c $< -o $@

rebuild: clean $(LIB)

dirs:
	mkdir -p build

clean:
	- rm -rd build