# This the makefile that should be at the top level of ve-3.5g source tree
# after the source tarball has been unpacked. It simply calls the make file
# in the prog directory. This top level makefile is needed because the ve.spec
# rpmbuild file wants to call a make file in the top level of the unpacked 
# source tarball.

# Usage: "make" creates the executable, "make intall" installs the resulting
# program and documentation and "make clean" cleans up all the .o files.

SRCDIR=ve-3.5g-src/prog

ve :
	cd $(SRCDIR) ; make

clean :
	cd $(SRCDIR) ; make clean

install:
	cd $(SRCDIR) ; make install

