A copyright violation detector running on Wikimedia Cloud Services https://tools.wmflabs.org/copyvios/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

25 lines
450 B

  1. MAKEJS := uglifyjs --compress
  2. MAKECSS := postcss -u cssnano --no-map
  3. .PHONY: all js css
  4. .INTERMEDIATE: static/style.tmp.css
  5. all: js css
  6. js: static/script.min.js
  7. css: static/style.min.css static/api.min.css
  8. static/script.min.js: static/script.js
  9. $(MAKEJS) -o $@ -- $^
  10. static/style.tmp.css: static/css/*.css
  11. cat $^ > $@
  12. static/style.min.css: static/style.tmp.css
  13. $(MAKECSS) -o $@ $^
  14. static/api.min.css: static/api.css
  15. $(MAKECSS) -o $@ $^