# Make file to construct the ve executable
# This file specifies code optimized for size and targeted to the i686 (Pentium Pro and above) 
# architecture

# Usage: "make" creates the executable, "make clean" cleans up

ve :
	cd prog ; make

install :
	cd prog ; make install

clean :
	cd prog ; rm -f ve *.o

