CFLAGS = -g -fsanitize=address -fno-omit-frame-pointer
# CFLAGS = -g

EXAMPLES = ex0 ex1 ex2

default: $(EXAMPLES)

clean:
	rm -f $(EXAMPLES)
