Merge pull request #1 from swalladge/makefile

Add makefile
This commit is contained in:
Romain Lafourcade 2019-05-01 16:52:18 +02:00 committed by GitHub
commit 5180c2aa58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

9
Makefile Normal file
View File

@ -0,0 +1,9 @@
VIM_OUTPUTS = $(patsubst %.erb,%.vim,$(wildcard colors/*.erb))
.PHONY: all
all: $(VIM_OUTPUTS)
%.vim: %.erb
erb -T - $< > $@