CFLAGS=-nologo -DWIN32=1 -MD -O2 -I../lib/t1lib
LIBS=../lib/libt1.lib

type1afm.exe: type1afm.obj
	cl -Fe$@ $< $(LIBS)

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

install: type1afm.exe
	cp -p type1afm.exe c:/usr/local/bin/
	cp -p type1afm.exe c:/usr/work/edrive/wk/dist/WEB2CBIN/bin/

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