Blame view

Debug/Makefile 211 Bytes
0ae69087   pfrison   Ajout des fichiers
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