mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
cf49904e69
git-svn-id: svn://svn.cc65.org/cc65/trunk@2498 b7a2c559-68d2-44c3-8de9-860c34a00d81
37 lines
642 B
Makefile
37 lines
642 B
Makefile
#
|
|
# cc65 makefile for the supervision specific modules
|
|
#
|
|
|
|
.SUFFIXES: .o .s .c
|
|
|
|
#--------------------------------------------------------------------------
|
|
# Rules
|
|
|
|
%.o: %.c
|
|
@$(CC) $(CFLAGS) $<
|
|
@$(AS) -o $@ $(AFLAGS) $(*).s
|
|
|
|
%.o: %.s
|
|
@$(AS) -g -o $@ $(AFLAGS) $<
|
|
|
|
#--------------------------------------------------------------------------
|
|
# Object files
|
|
|
|
C_OBJS =
|
|
|
|
S_OBJS = crt0.o \
|
|
ctype.o
|
|
|
|
#--------------------------------------------------------------------------
|
|
# Targets
|
|
|
|
.PHONY: all clean zap
|
|
|
|
all: $(C_OBJS) $(S_OBJS)
|
|
|
|
clean:
|
|
@$(RM) $(C_OBJS:.c=.s) $(C_OBJS) $(S_OBJS)
|
|
|
|
zap: clean
|
|
|