mirror of
https://github.com/logicog/RTLPlayground.git
synced 2026-08-30 14:52:51 +08:00
22 lines
290 B
Makefile
22 lines
290 B
Makefile
CC = sdcc
|
|
CC_FLAGS = -mmcs51 -I. -I../uip
|
|
ASM = sdas8051
|
|
AFLAGS= -plosgff
|
|
|
|
SRCS = hello-world.c
|
|
OBJS = ${SRCS:.c=.rel}
|
|
|
|
all: $(OBJS)
|
|
|
|
%.rel: %.c
|
|
$(CC) $(CC_FLAGS) -c $<
|
|
|
|
%.rel: %.asm
|
|
${ASM} ${AFLAGS} $^
|
|
|
|
clean:
|
|
rm *.ihx *.lk *.lst *.map *.mem *.rel *.rst *.sym *.bin
|
|
|
|
.PHONY: all clean
|
|
|