Add makefile target for starting httpd.

This commit is contained in:
Bartosz Taudul 2022-10-05 23:02:59 +02:00
parent 3ca61ad227
commit 754f7a5167
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

View File

@ -9,4 +9,7 @@ release:
clean:
@+make -f build.mk clean
.PHONY: all clean debug release db
serve:
@python httpd.py
.PHONY: all clean debug release serve