Advertisement
Guest User

Untitled

a guest
Oct 21st, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. MatrixMultiplication: Main.o Cell.o FileProcessing.o FirstMethod.o MatricesData.o SecondMethod.o
  2. gcc -z Main Main.c Cell.c FileProcessing.c FirstMethod.c MatricesData.c SecondMethod.c -lpthread -o matMult
  3.  
  4. Main.o: Main.c
  5. gcc -c Main.c
  6.  
  7. FileProcessing.o: FileProcessing.c FileProcessing.h
  8. gcc -c FileProcessing.c
  9.  
  10. FirstMethod.o: FirstMethod.c FirstMethod.h
  11. gcc -c FirstMethod.c
  12.  
  13. SecondMethod.o: SecondMethod.c SecondMethod.h
  14. gcc -c SecondMethod.c
  15.  
  16. MatricesData.o: MatricesData.c
  17. gcc -c MatricesData.c
  18.  
  19. Cell.o: Cell.c
  20. gcc -c Cell.c
  21.  
  22. clean:
  23. rm *.o Shell
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement