Simple image host.
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.

Makefile 554B

12345678910111213141516171819202122232425
  1. REF = HEAD
  2. VERSION = $(shell git describe --always $(REF))
  3. ARCHIVE = vim-coffee-script-$(VERSION).zip
  4. ARCHIVE_DIRS = after autoload compiler doc ftdetect ftplugin indent syntax
  5. # Don't do anything by default.
  6. all:
  7. # Make vim.org zipball.
  8. archive:
  9. git archive $(REF) -o $(ARCHIVE) -- $(ARCHIVE_DIRS)
  10. # Remove zipball.
  11. clean:
  12. -rm -f $(ARCHIVE)
  13. # Build the list of syntaxes for @coffeeAll.
  14. coffeeAll:
  15. @grep -E 'syn (match|region)' syntax/coffee.vim |\
  16. grep -v 'contained' |\
  17. awk '{print $$3}' |\
  18. uniq
  19. .PHONY: all archive clean hash coffeeAll