Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.63 KB | None | 0 0
  1. cc = gcc
  2. ld = gcc
  3. ldflags = -lm
  4.  
  5. prog: kernel.o kernel.h sphaux.o sphaux.h sphKutta.o sphKutta.h sphtypes.h sphunits.h main.o
  6.     cc -o SPHschrodinger main.o kernel.o sphaux.o sphKutta.o -lm -Wall -pedantic -ansi
  7.  
  8. main.o: kernel.h sphaux.h sphKutta.h sphtypes.h sphunits.h main.c
  9.     cc -c main.c -O2 -Wall -pedantic -ansi
  10.  
  11. kernel.o: kernel.c
  12.     cc -c kernel.c -O2 -Wall -pedantic -ansi
  13.    
  14. sphaux.o: sphaux.c sphtypes.h
  15.     cc -c sphaux.c -O2 -Wall -pedantic -ansi
  16.        
  17.    
  18. sphKutta.o: sphKutta.c sphtypes.h sphaux.h
  19.     cc -c sphKutta.c -O2 -Wall -pedantic -ansi
  20.    
  21. clean:
  22.     rm *.o fps* analitica-* *.jpg *.gnome SPHschrodinger gradcheck*
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement