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

AS = sdasz80
AR = sdar

SOURCES = ap.z80
OBJS = $(patsubst %.z80,%.rel,$(SOURCES))

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

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

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