mirror of
https://github.com/cc65/cc65.git
synced 2025-01-14 00:32:08 +00:00
6afee6fb05
git-svn-id: svn://svn.cc65.org/cc65/trunk@2497 b7a2c559-68d2-44c3-8de9-860c34a00d81
36 lines
598 B
Makefile
36 lines
598 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
|
|
|
|
#--------------------------------------------------------------------------
|
|
# Targets
|
|
|
|
.PHONY: all clean zap
|
|
|
|
all: $(C_OBJS) $(S_OBJS)
|
|
|
|
clean:
|
|
@$(RM) $(C_OBJS:.c=.s) $(C_OBJS) $(S_OBJS)
|
|
|
|
zap: clean
|
|
|