TARGETS=q1 q2 q3 q1-done q2-done q3-done
CC=gcc
CFLAGS=-Wall --std=gnu99
LDFLAGS=-lm

all: $(TARGETS)

clean:
	rm -f $(TARGETS)
