# C'est un exemple, il n'y a pas de source à compiler CFLAGS=-I ../libs -lpthread -L ../libs -Wall -Wextra all: gcc *.c -o main.out $(CFLAGS) debug: CFLAGS += -g -DDEBUG debug: all clean: rm -rf *.o *.out