File size: 181 Bytes
402daee
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
RUBY=ruby

input:=$(wildcard *.png)
output:=$(input:.png=.lua)

all: $(output)

%.lua: %.png
	$(RUBY) ../../../common/scripts/png_to_lua.rb $< $@

.PHONY: clean
clean:
	rm -f *.lua