aboutsummaryrefslogtreecommitdiff
path: root/src/ubox/Makefile
blob: 1d8e27e5e352b4be8fde5994622781b821cab833 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
LIB := ../../lib/ubox.lib
all: $(LIB)

AS := sdasz80
AR := sdar

SOURCES := $(wildcard ubox_*.z80)
OBJS := $(patsubst %.z80,%.rel,$(SOURCES))

$(LIB): $(OBJS)
	$(AR) -rcD $(LIB) $(OBJS)

%.rel: %.z80
	$(AS) -o $<

.PHONY: clean
clean:
	rm -f $(OBJS) $(LIB)