Guest User

Untitled

a guest
Mar 17th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. all: main
  2.  
  3. main: main.o tree.o list.o
  4. gcc -o main main.o tree.o list.o
  5.  
  6. main.o: main.c
  7. gcc -Wall -Wextra -g -std=c11 -O2 -c main.c
  8.  
  9. tree.o: tree.h tree.c
  10. gcc -Wall -Wextra -g -std=c11 -O2 -c tree.c
  11.  
  12. list.o: list.c list.h
  13. gcc -Wall -Wextra -g -std=c11 -O2 -c list.c
  14.  
  15. clean:
  16. rm *.o main
  17.  
  18. valgrid:
  19. valgrind ./main
Add Comment
Please, Sign In to add comment