mirror of
https://github.com/cc65/cc65.git
synced 2025-02-05 20:31:53 +00:00
18 lines
246 B
Makefile
18 lines
246 B
Makefile
#
|
|
# Makefile for GEOS lib
|
|
# for cc65
|
|
#
|
|
#
|
|
|
|
%.o: %.s
|
|
@$(AS) -o $@ $(AFLAGS) $<
|
|
|
|
|
|
S_OBJS = domenu.o dopreviousmenu.o redomenu.o recovermenu.o recoverallmenus.o\
|
|
gotofirstmenu.o doicons.o
|
|
|
|
all: $(S_OBJS)
|
|
|
|
clean:
|
|
@$(RM) *.~ $(S_OBJS) core
|