Makefile: only process files starting with a digit
This commit is contained in:
parent
45bc48788a
commit
2df4aeee5d
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -1,5 +1,5 @@
|
||||||
BITMAPS:=$(patsubst parts/%.dat, bitmaps/%.png, $(wildcard parts/*.dat))
|
BITMAPS:=$(patsubst parts/%.dat, bitmaps/%.png, $(wildcard parts/[0-9]*.dat))
|
||||||
BITMAPSWF:=$(patsubst parts/%.dat, bitmaps-wireframe/%.png, $(wildcard parts/*.dat))
|
BITMAPSWF:=$(patsubst parts/%.dat, bitmaps-wireframe/%.png, $(wildcard parts/[0-9]*.dat))
|
||||||
NORMALIZED:=$(patsubst parts/%.dat, normalized/%.dat, $(wildcard parts/*.dat))
|
NORMALIZED:=$(patsubst parts/%.dat, normalized/%.dat, $(wildcard parts/*.dat))
|
||||||
|
|
||||||
all: parts
|
all: parts
|
||||||
|
|
Loading…
Reference in a new issue