ImageGrid/ui/Makefile
Alex A. Naanou cf47504ccd working on Makefile...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
2013-06-04 19:24:18 +04:00

16 lines
213 B
Makefile
Executable File

%.css: %.less
lessc $< > $@
CSS_FILES := $(patsubst %.less,%.css,$(wildcard *.less))
# make this search for all *.less files...
TARGET= layout.css
all: $(CSS_FILES)
clean:
@rm -f $(TARGET)