portainer/Makefile

16 lines
181 B
Makefile
Raw Normal View History

2013-06-09 00:12:14 +00:00
REF = HEAD
VERSION = $(shell git describe --always $(REF))
all: ts less
clean:
rm js/*.js
ts:
tsc js/*.ts
less:
less css/*.less > css/app.css
.PHONY: all clean hash ts less