TARGET = 1_hello_world 2_figures 3_random 4_texts_and_boxes 5_souris 6_clavier 7_prompt 8_couleurs

##########################################################"

LDFLAGS = `pkg-config --libs MLV`
CFLAGS = -g -O2 -Wall `pkg-config --cflags MLV`
LDLIBS = `pkg-config --libs-only-l MLV`


all: $(TARGET)

clean:
	-rm -rf $(TARGET)


