CC = gcc
# Uncomment the following if you aren't using gcc
# CC = cc

asm: ev.o 

.PHONY: clean

clean:
	-rm -f *~
	-rm -f *.o

