From 2df4aeee5d9391767e8a93c3ffff35dd59b058a8 Mon Sep 17 00:00:00 2001 From: josch Date: Sat, 28 Mar 2015 10:46:06 +0100 Subject: [PATCH] Makefile: only process files starting with a digit --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 6bc97fd..d9536a1 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -BITMAPS:=$(patsubst parts/%.dat, bitmaps/%.png, $(wildcard parts/*.dat)) -BITMAPSWF:=$(patsubst parts/%.dat, bitmaps-wireframe/%.png, $(wildcard parts/*.dat)) +BITMAPS:=$(patsubst parts/%.dat, bitmaps/%.png, $(wildcard parts/[0-9]*.dat)) +BITMAPSWF:=$(patsubst parts/%.dat, bitmaps-wireframe/%.png, $(wildcard parts/[0-9]*.dat)) NORMALIZED:=$(patsubst parts/%.dat, normalized/%.dat, $(wildcard parts/*.dat)) all: parts