TARGET = 01_keyboard_events 02_mouse_events 03_input_box_events 04_events 05_exit 06_colors 07_time 08_full_screen 09_keyboard_accents 10_mouse_or_keyboard_access

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

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

all: $(TARGET)

clean:
	-rm -rf $(TARGET)


