oozz 0.4.1

A CLI program that takes input and renders it in an ANSI art font, and adds some colored oozz.
Documentation
1
2
3
4
5
6
7
8
9
10
11
DIR = resources
SRC = chars.ans extra.ans oozz.ans

LATIN1 = $(SRC:%.ans=$(DIR)/%.latin1)
	
all: $(LATIN1)

$(DIR)/%.latin1: $(DIR)/%.ans
	# recode 437 < $< > $@
	recode 437 < $< | sed -e 's/\[37m/\[39m/g' > $@