mirror of
https://github.com/cc65/cc65.git
synced 2024-11-06 15:06:07 +00:00
18 lines
278 B
Makefile
18 lines
278 B
Makefile
|
#
|
||
|
# Makefile for GEOS lib
|
||
|
# for cc65
|
||
|
#
|
||
|
#
|
||
|
|
||
|
%.o: %.s
|
||
|
@echo $<
|
||
|
@$(AS) -o $@ $(AFLAGS) $<
|
||
|
|
||
|
|
||
|
S_OBJS = callroutine.o enterdesktop.o firstinit.o getrandom.o getserialnumber.o\
|
||
|
initdoneio.o mainloop.o panic.o tobasic.o setdevice.o
|
||
|
|
||
|
all: $(S_OBJS)
|
||
|
|
||
|
clean:
|
||
|
@rm -f *.~ $(S_OBJS) core
|