Makefile 211 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 # 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