##
# Makefile to build library and examples.
#

all: klimt test

klimt:
	@echo "=== Building klimt library ==="
	-cd ../../klimt/build/LinuxX11/; make -f Makefile
	@echo

test:
	@echo "=== Building simple test ==="
	-cd ../../test/simple_linux_x11/; make -f Makefile
	@echo

clean:
	@echo "=== Cleaning klimt library ==="
	-cd ../../klimt/build/LinuxX11/; make -f Makefile clean

	@echo -e "\n=== Cleaning simple test ==="
	-cd ../../test/simple_linux_x11/; make -f Makefile clean
