all: textorizer textorizer.static textorizer.md5sum textorizer.static.md5sum textorizer2 

textorizer: textorizer.c
	gcc textorizer.c -o textorizer  -Wall -lpng12 -lz -lm

textorizer2: textorizer2.c
	gcc textorizer2.c -g -o textorizer2  -Wall -lpng12 -lz -lm

textorizer.static: textorizer.c
	gcc textorizer.c -o textorizer.static  -Wall -static -lpng12 -lz -lm

textorizer.md5sum: textorizer
	md5sum textorizer > textorizer.md5sum

textorizer.static.md5sum: textorizer.static
	md5sum textorizer.static > textorizer.static.md5sum

jetlag.svg: textorizer2 jetlag.png
	./textorizer2 -f 5 -i jetlag.png -o jetlag.svg

lighthouse.svg: textorizer2 lighthouse.png
	./textorizer2 -f 5 -i lighthouse.png -o lighthouse.svg

forbiddencity.svg: textorizer2 forbiddencity.png
	./textorizer2 -f 5 -i forbiddencity.png -o forbiddencity.svg
