From 15393dd055c212418f2a4ecc2c1226a3f29d51d5 Mon Sep 17 00:00:00 2001 From: Yorhel Date: Sat, 14 Sep 2013 10:39:14 +0200 Subject: Makefile: Fix dependency of 'make skins' If you don't have any style.css files yet, make won't know what files to create. It does with this shell pattern. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 318fbb13..654b9711 100644 --- a/Makefile +++ b/Makefile @@ -47,7 +47,7 @@ dirs: static/f/js static/ch static/cv static/sf static/st data/log www www/feeds js: static/f/js/en.js -skins: static/s/*/style.css +skins: $(shell ls static/s | sed -e 's/\(.\+\)/static\/s\/\1\/style.css/g') robots: dirs www/robots.txt static/robots.txt -- cgit v1.2.3