mirror of
https://github.com/cc65/cc65.git
synced 2024-12-25 02:29:52 +00:00
20 lines
340 B
Makefile
20 lines
340 B
Makefile
|
#
|
||
|
# Makefile for GEOS lib
|
||
|
# for cc65
|
||
|
#
|
||
|
#
|
||
|
|
||
|
%.o: %.s
|
||
|
@echo $<
|
||
|
@$(AS) -o $@ $(AFLAGS) $<
|
||
|
|
||
|
|
||
|
S_OBJS = startmousemode.o clearmousemode.o mouseup.o mouseoff.o\
|
||
|
drawsprite.o possprite.o enablsprite.o disablsprite.o\
|
||
|
ismseinregion.o inittextprompt.o promptoff.o prompton.o\
|
||
|
getnextchar.o
|
||
|
|
||
|
all: $(S_OBJS)
|
||
|
|
||
|
clean:
|
||
|
@rm -f *.~ $(S_OBJS) core
|