# Makefile to install vietnamese stuff

.PHONY:	all distrib strip

all:

distrib:
	./vncode-* --release

strip:	vncode

vncode:	$(wildcard vncode-*)
	cp ./vncode-* ./vncode && ./vncode

clean:
	-rm viscii11.uni vn-compose.map vncode

viscii11.uni: vncode
	./vncode --psf > viscii11.uni

vn-compose.map: vncode
	./vncode -k > vn-compose.map
