1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-15 03:55:01 +00:00
cc65/libsrc/geos/process/Makefile

17 lines
215 B
Makefile
Raw Normal View History

#
# 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