Adding initial http daemon implementation

This commit is contained in:
logicog
2025-07-13 12:03:40 +02:00
parent e2716da6c8
commit d66931acdf
11 changed files with 154 additions and 154 deletions
+23
View File
@@ -0,0 +1,23 @@
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