# To run this makefile, you must provide the ARCH and MATLABROOT
# variables on the command line, i.e. as in
#

.PHONY: all clean

all:
	make -C ../ build/libltfat.a
	cp ../build/libltfat.a ../../lib

clean:
	make -C ../ clean
	@rm ../../lib/libltfat.a

