aboutsummaryrefslogtreecommitdiff
path: root/conio/Makefile
blob: 4679d313b16543f21883a6f9be92f881b1180363 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
all: conio.lib

OBJS=cgetc.o chline.o clrscr.o cputc.o cputs.o cvline.o gotox.o gotoxy.o gotoy.o revers.o wherex.o wherey.o 

conio.lib: $(OBJS)
	ar65 a conio.lib *.o

%.o: %.s
	cl65 -O -t atari -c $<

clean:
	rm -f *.o