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

CC=sdcc
AR=sdar
CFLAGS=-mz80 --Werror -I../../include --fsigned-char --std-sdcc99 --opt-code-speed

SOURCES=$(wildcard *.c)
OBJS=$(patsubst %.c,%.rel,$(SOURCES))

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

%.rel: %.c
	$(CC) $(CFLAGS) $(LDFLAGS) -c $<

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