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

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

all: lib

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

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