#
# Makefile to clean ex1
#
EXECS = all\
	fac \
	fib \
	hello \
	ints \
	simple \
	skip

clean:
	rm -f $(EXECS) *.o *.s *.aux *.dvi *.log *.ps *.pdf
