all:
	gcc -fPIE -O3 -s -Wl,--gc-sections -o bin/esceval esceval.c
install:
	cp -r bin/ $(DESTDIR)/
clean: 
	rm bin/esceval
