go-http-skeleton/Makefile
Jan Eitzinger f15d6b2163
Initial checkin of templ skeleton
HTML based on Jason Knight HTML template code
2024-08-03 08:51:30 +02:00

19 lines
292 B
Makefile

TARGET = ./site
.PHONY: clean distclean test components $(TARGET)
.NOTPARALLEL:
$(TARGET): components
$(info ===> BUILD site)
@go build ./cmd/site
components:
$(info ===> BUILD templates)
cd web/components && templ generate
clean:
$(info ===> CLEAN)
@go clean
@rm -f $(TARGET)