Advertisement
Guest User

Makefile

a guest
Jun 12th, 2013
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. CC = g++
  2. CFLAGS = -fopenmp
  3. LDFLAGS = -fopenmp
  4.  
  5. all:test1-forum
  6. echo "Done"
  7. test1-forum:test1-forum.o
  8. $(CC) $(LDFLAGS) -o test1-forum test1-forum.o
  9. test1-forum.o: test1-forum.cpp
  10. $(CC) $(CFLAGS) -c test1-forum.cpp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement