https://github.com/quicwg/base-drafts
Raw File
Tip revision: a3a8cc155e64874a57b840da687361030cbc5bcc authored by Martin Thomson on 26 October 2023, 12:12:49 UTC
Header protection application and removal
Tip revision: a3a8cc1
Makefile
MD_PREPROCESSOR := sed -e 's/{DATE}/$(shell date '+%Y-%m-%d')/g'
TIDY := true

LIBDIR := lib
include $(LIBDIR)/main.mk

$(LIBDIR)/main.mk:
ifneq (,$(shell git submodule status $(LIBDIR) 2>/dev/null))
	git submodule sync
	git submodule update $(CLONE_ARGS) --init
else
	git clone -q --depth 10 $(CLONE_ARGS) \
	    -b main https://github.com/martinthomson/i-d-template $(LIBDIR)
endif

latest:: lint
.PHONY: lint

lint::
	@$(trace) wslint $(python) ./.lint.py $(addsuffix .md,$(drafts))

show-next:
	@echo $(drafts_next)
back to top