# Do *not* edit this file
# Project-specific changes/customization should go into project.mk
all: init
init: comain configure common.mk config.mk
configure common.mk:
	$(_LN) ln -sf comain/$@ $@
comain:
	git clone git://lila.oss/comain.git
config.mk: | configure common.mk
	$(error Please run ./configure to set things up.)
say  = @echo "  "$1"    "
_LN   = $(if $(V),,$(call say,"  LN  ")$@;)
_INIT = $(if $(V),,$(call say," INIT ")$@;)
include common.mk
.PHONY: all init