TARGET = 01_hello_world 02_shapes 03_random 04_texts_and_boxes 05_mouse 06_keyboard 07_input_box 08_mouse_keyboard_timer 09_colors 10_keys_codes 11_library_informations

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

CFLAGS = -g -O2 -Wall -Werror `pkg-config --cflags MLV`
LDLIBS = `pkg-config --libs MLV`

all: $(TARGET)

clean:
	-rm -rf $(TARGET)

