Added support for the Oric atmos (with some help by Debrune Jérôme

<jede@oric.org>)


git-svn-id: svn://svn.cc65.org/cc65/trunk@1297 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2002-06-03 20:23:15 +00:00
parent 606ecafccd
commit eb568293d7
3 changed files with 130 additions and 5 deletions

20
libsrc/atmos/Makefile Normal file
View File

@@ -0,0 +1,20 @@
#
# makefile for CC65 runtime library
#
.SUFFIXES: .o .s .c
%.o: %.c
@$(CC) $(CFLAGS) $<
@$(AS) -o $@ $(AFLAGS) $(*).s
%.o: %.s
@$(AS) -g -o $@ $(AFLAGS) $<
OBJS = crt0.o
all: $(OBJS)
clean:
@rm -f $(OBJS)