From a2f81d9d73940842085f73fa626b3ef008f68062 Mon Sep 17 00:00:00 2001 From: Emily Eisenberg Date: Mon, 3 Nov 2014 18:53:56 -0800 Subject: [PATCH] Make `build/katex.less.css` depend on `static/fonts.less` Before, it only depended on `static/katex.less`. Now, make it a little less general and depend on all less files, in case we add more in the future. Auditors: alpert --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2de8a003b..e5839a454 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ build/katex.js: katex.js $(wildcard src/*.js) build/katex.min.js: build/katex.js ./node_modules/.bin/uglifyjs --mangle --beautify ascii_only=true,beautify=false < $< > $@ -build/%.less.css: static/%.less +build/katex.less.css: static/katex.less $(wildcard static/*.less) ./node_modules/.bin/lessc $< $@ build/katex.min.css: build/katex.less.css