balsamine.2017-2018
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

makefile
text/x-makefile

Download raw (266 bytes)

SHELL := /usr/bin/env bash

all: chapters/book0/style.css

chapters/book0/style.css : chapters/book0/style.less
	lessc chapters/book0/style.less chapters/book0/style.css


# In the makefile:
.PHONY: watch
watch:
	while true; do make | grep -v "^make"; sleep 1; done