Makefile 261 B

12345678910111213141516171819202122
  1. SRC= main.less
  2. OUTPUT= ../public/crosswords.min.css
  3. CLOSURE= closure-compiler-v20170218.jar
  4. all: ${OUTPUT}
  5. debug:
  6. lessc ${SRC} ${OUTPUT}
  7. ${OUTPUT}:
  8. lessc --clean-css ${SRC} ${OUTPUT}
  9. clean:
  10. $(RM) $(OUTPUT)
  11. re: clean all
  12. .PHONY: all debug clean re