
CFLAGS = -O2 -Wall -W
PROGS = recursion varargs func_pointers
default : $(PROGS)

clean ::
	rm $(PROGS)


