species-of-things
clone your own copy | download snapshot

Snapshots | iceberg

No images in this repository’s iceberg at this time

Inside this repository

makefile
text/x-makefile

Download raw (304 bytes)

SHELL := /usr/bin/env bash

all: main.css chapters/systems.css

main.css : main.less
	lessc main.less main.css

chapters/systems.css : chapters/systems.less
	lessc chapters/systems.less chapters/systems.css

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