https://github.com/quicwg/base-drafts
Raw File
Tip revision: 37ec9991c5d1aee37aa39c20049641c64bd97cdd authored by Martin Thomson on 29 November 2016, 00:02:39 UTC
Adding role
Tip revision: 37ec999
Makefile
MD_PREPROCESSOR := sed -e 's/{DATE}/$(shell date +%Y-%m)/'

include lib/main.mk

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