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

18 lines
286 B
Makefile
Raw Normal View History

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