.PHONY: all clean

all: evenmodtime

evenmodtime: evenmodtime.cc
	g++ -o evenmodtime -Wall -O2 evenmodtime.cc

clean:
	rm -f evenmodtime

