https://github.com/quicwg/base-drafts
Raw File
Tip revision: 7fbcdb0e7c66bbe9193a96cd21519ebd7a02644a authored by Martin Thomson on 23 April 2019, 23:00:11 UTC
Merge pull request #2631 from quicwg/changelog-20
Tip revision: 7fbcdb0
Makefile
MD_PREPROCESSOR := sed -e 's/{DATE}/$(shell date '+%Y-%m-%d')/g'

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 master https://github.com/martinthomson/i-d-template $(LIBDIR)
endif

latest:: lint
.PHONY: lint

PYTHON := $(shell which python3)
ifeq ($(PYTHON),)
PYTHON := $(shell which python)
endif

ifneq ($(PYTHON),)
lint::
	@$(PYTHON) ./.lint.py $(addsuffix .md,$(drafts))
endif

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