Guest User

Untitled

a guest
Jul 22nd, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. test_format: test_format.o format_thousands.o
  2. ifort -o test_format test_format.o format_thousands.o -lpcre
  3.  
  4. test_format.o: test_format.f90
  5. ifort -c test_format.f90
  6.  
  7. format_thousands.o: format_thousands.c
  8. icc -c -std=c99 format_thousands.c
  9.  
  10. PHONY: clean run
  11.  
  12. clean:
  13. rm -f test_format *.o
  14.  
  15. run:
  16. ./test_format
Add Comment
Please, Sign In to add comment