# Makefile for pfm2afm and afm2pfm
# for EMX/GCC 0.8h
# Russell Lang <rjl@eng.monash.edu.au>

CFLAGS=-nologo -MD -O2 -DWIN32=1

all: afm2pfm.exe pfm2afm.exe

afm2pfm.exe: afm2pfm.obj
	$(CC) -Fe$@ $<

pfm2afm.exe: pfm2afm.obj
	$(CC) -Fe$@ $<

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

AA=c:/usr/local/txdir/w32tex/bin/

install: afm2pfm.exe pfm2afm.exe
	cp -p afm2pfm.exe pfm2afm.exe $(AA)
	cp -p afm2pfm.exe pfm2afm.exe c:/usr/work/edrive/wk/dist/WEB2CBIN/bin/
