mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
17 lines
215 B
Makefile
17 lines
215 B
Makefile
|
#
|
||
|
# Makefile for GEOS lib
|
||
|
# for cc65
|
||
|
#
|
||
|
#
|
||
|
|
||
|
%.o: %.s
|
||
|
@echo $<
|
||
|
@$(AS) -o $@ $(AFLAGS) $<
|
||
|
|
||
|
|
||
|
S_OBJS = processinitrestartenable.o processblock.o processfreeze.o sleep.o
|
||
|
|
||
|
all: $(S_OBJS)
|
||
|
|
||
|
clean:
|
||
|
@rm -f *.~ $(S_OBJS) core
|