implement basic http server

This commit is contained in:
2024-02-13 18:01:59 -08:00
parent d7cfc0d782
commit c0e774c08c
11 changed files with 286 additions and 51 deletions

View File

@@ -1,9 +1,16 @@
TOPTARGETS := all clean
#TOPTARGETS := all clean
SUBDIRS := $(wildcard */.)
SUBDIRS := build
all: makefsdata $(SUBDIRS)
makefsdata:
python3 makefsdata.py
clean: $(SUBDIRS)
rm -rf htmldata.c
$(TOPTARGETS): $(SUBDIRS)
$(SUBDIRS):
$(MAKE) -C $@ $(MAKECMDGOALS)
$(MAKE) -C $@ $(MAKECMDGOALS)
.PHONY: $(TOPTARGETS) $(SUBDIRS)
.PHONY: all makefsdata clean $(SUBDIRS)