From 35e206d371479613509a5fb78f60f9feec97cf8b Mon Sep 17 00:00:00 2001 From: Samuel Walladge Date: Thu, 2 May 2019 00:07:26 +0930 Subject: [PATCH] inline make targets logic --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 2afd6db..0246d8d 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,5 @@ -ERB_SOURCES = $(wildcard colors/*.erb) -VIM_OUTPUTS = $(ERB_SOURCES:%.erb=%.vim) +VIM_OUTPUTS = $(patsubst %.erb,%.vim,$(wildcard colors/*.erb)) .PHONY: all