1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-16 02:28:57 +00:00
cc65/libsrc/geos/conio/Makefile

17 lines
248 B
Makefile
Raw Normal View History

#
# Makefile for GEOS lib
# for cc65
#
%.o: %.s
@$(AS) -o $@ $(AFLAGS) $<
S_OBJS = cchvline.o cgetc.o clrscr.o color.o cputc.o cputs.o cursor.o gotoxy.o kbhit.o\
revers.o screensize.o where.o
all: $(S_OBJS)
clean:
@rm -f *.~ $(S_OBJS) core