# Makefile for latex2emf (OSX/fink)
#

## ROOT is the root of the libEMF installation
#ROOT=/sw
ROOT=/usr/local

## Do not edit below this line ##
ARCH=__PPC__

all: latex2emf

latex2emf: ../latex2emf.cpp
	c++  -D$(ARCH) \
	     -L$(ROOT)/lib/ \
	     -I$(ROOT)/include/ -I$(ROOT)/include/libEMF/ \
	     -o latex2emf ../latex2emf.cpp -lEMF
	cp latex2emf $(HOME)/bin/
