Blame view

Makefile 160 Bytes
762b7dc2   Raouak Haroun   dernier commit
1
2
3
4
  
  all: executable
  
  executable: projet.o
2eee91cd   Raouak Haroun   dernier commit
5
  	gcc -o executable projet.o -g
762b7dc2   Raouak Haroun   dernier commit
6
7
8
9
10
11
12
13
14
  
  projet.o: projet.c
  	gcc -c projet.c
  
  clean:
  	rm -rf *.o
  
  mrproper: clean
  	rm -rf $(EXEC)