#
# Makefile to clean ex1
#
EXECS = ehm \
	empty \
	fac \
	fib \
	ints \
	wazig

clean:
	rm -f $(EXECS) *.o *.s
