Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.38 KB | None | 0 0
  1. all: artikel artikel_main artikel_test
  2.  
  3. artikel: artikel.cpp artikel.h
  4.     g++ -Wall -c -o artikel.o artikel.cpp
  5.  
  6. artikel_main: artikel_main.cpp artikel.cpp artikel.h
  7.     g++ -Wall -o artikel_main artikel.o artikel_main.cpp
  8.  
  9. artikel_test: artikel_test.cpp artikel.cpp artikel.h
  10.     g++ -Wall -o artikel_test artikel.o artikel_test.cpp
  11.  
  12. clean:
  13.     \rm -f *.o artikel artikel_main artikel_test
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement