From 36c948f705330810f6ea854f08bf099f83720f32 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Sat, 23 Jan 2021 19:38:26 -0300 Subject: Add Makefile with "clean", "check" and "public" rules --- Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..338bfee --- /dev/null +++ b/Makefile @@ -0,0 +1,17 @@ +.PHONY: check +check: + sh tests.sh + +.PHONY: clean +clean: + rm -rf public/ _site/ + +NAME_UC = website +NAME = $(NAME_UC) +MAILING_LIST = public-inbox +OUT = public + +.PHONY: public +public: + jekyll build -d $(OUT) --trace + sh build-aux/workflow/TODOs.sh $(NAME_UC) $(NAME) $(MAILING_LIST) -- cgit v1.2.3