Guest User

Makefile

a guest
Oct 29th, 2016
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. .c.o: $*.h
  2. gcc -c $*.c
  3.  
  4. .cpp.o: $*.h
  5. g++ -Wall -Wno-deprecated -c $*.cpp
  6.  
  7. all: trabalho
  8.  
  9. trabalho: trabalho.o winGL.o
  10. gcc -o $@ $^ -lGL -lGLU -lglut
  11.  
  12. clean:
  13. rm *.o *.*~ *~ trabalho
Advertisement
Add Comment
Please, Sign In to add comment