mirror of
https://github.com/cc65/cc65.git
synced 2024-11-01 11:04:34 +00:00
27 lines
350 B
Makefile
27 lines
350 B
Makefile
|
#
|
||
|
# makefile for CC65 runtime library
|
||
|
#
|
||
|
|
||
|
.SUFFIXES: .o .s .c
|
||
|
|
||
|
%.o: %.c
|
||
|
@echo $<
|
||
|
@$(CC) $(CFLAGS) $<
|
||
|
@$(AS) -o $@ $(AFLAGS) $(*).s
|
||
|
|
||
|
%.o: %.s
|
||
|
@echo $<
|
||
|
@$(AS) -g -o $@ $(AFLAGS) $<
|
||
|
|
||
|
C_OBJS =
|
||
|
|
||
|
S_OBJS = cputs.o cursor.o cputhex.o scrsize.o
|
||
|
|
||
|
all: $(C_OBJS) $(S_OBJS)
|
||
|
|
||
|
clean:
|
||
|
@rm -f *~
|
||
|
@rm -f $(C_OBJS:.o=.s)
|
||
|
@rm -f $(C_OBJS)
|
||
|
@rm -f $(S_OBJS)
|