#
# Makefile
#
CFLAGS = -nologo -MT -O2
utf8prin.exe : utf8prin.obj
	cl -Fe$@ $< -link /STACK:1572864

utf8prin.obj : utf8prin.c
	cl $(CFLAGS) -c $<

BIN=utf8prin.exe

install: $(BIN)
	cp -p $(BIN) c:/usr/local/bin/
	cp -p $(BIN) c:/usr/work/edrive/wk/dist/WEB2CBIN/bin/

clean:
	rm -f *~ *.obj *.exe
