summaryrefslogtreecommitdiff
path: root/Makefile
blob: 1d23d3113286b1966b4d979f8d7fa45f9b82fb1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
CC=sdcc -mgbz80
AR=ar

COMPILE=$(CC) $(CFLAGS) -Iinclude -c

all: lib

lib:
	$(COMPILE) stdgb.c
	$(AR) -rc stdgb.lib *.rel

clean:
	rm -f *.asm *.lst *.rel *.sym *.lib