# makefile for EULER
# This makefile is for Linux

export INSTALL_DIR = /usr

all:
	cd source && make

install:
	cd source && make install

uninstall:
	cd source && make uninstall
	
clean:
	cd source && make clean
