mirror of
https://github.com/logicog/RTLPlayground.git
synced 2026-08-30 14:52:51 +08:00
24 lines
303 B
Makefile
24 lines
303 B
Makefile
CC = sdcc
|
|
CC_FLAGS = -mmcs51 -I. -I../uip
|
|
ASM = sdas8051
|
|
AFLAGS= -plosgff
|
|
|
|
SRCS = httpd.c
|
|
OBJS = ${SRCS:.c=.rel}
|
|
|
|
all: $(OBJS)
|
|
|
|
%.asm: %.c
|
|
$(CC) $(CC_FLAGS) -c -S $<
|
|
|
|
%.rel: %.asm
|
|
./treatasm.py $^ >$^.new
|
|
mv $^.new $^
|
|
${ASM} ${AFLAGS} $^
|
|
|
|
clean:
|
|
rm .asm *.lst *.rel *.rst *.sym
|
|
|
|
.PHONY: all clean
|
|
|