14

Makefile

  1. APP=poker
  2.  
  3. ALL=$(LIBS) $(TEST) $(APP)
  4.  
  5. APP_SRCS=poker.cpp
  6. APP_OBJS=$(APP_SRCS:.cpp=.o)
  7.  
  8. APPLIB=poker.lib
  9.  
  10. APPLIB_SRCS=Card.cpp Hand.cpp Deck.cpp
  11. APPLIB_OBJS=$(APPLIB_SRCS:.cpp=.o)
  12.  
  13. TEST=tdeck thand tcard # in this order
  14.  
  15. CPP=g++
  16. CPPFLAGS=-DDEBUG -g
  17.  
  18. AR=ar -cr
  19.  
  20. all:    $(ALL)
  21. app:    $(APP)
  22. lib:    $(APPLIB)
  23. test:   $(TEST)
  24.  
  25. $(APPLIB):  $(APPLIB_OBJS)
  26.     $(AR) $@ $(APPLIB_OBJS)
  27.  
  28. $(APP):     $(APP_OBJS) $(APPLIB)
  29.     $(CPP) $(CPPFLAGS) $(APP_OBJS) $(APPLIB) -o $@
  30.    
  31. tcard:  Card.h Card.cpp
  32.     $(CPP) $(CPPFLAGS) -DSTANDALONE -DDEBUG Card.cpp -o $@
  33.  
  34. thand:  Hand.h Hand.cpp Card.o
  35.     $(CPP) $(CPPFLAGS) -DSTANDALONE -DDEBUG Hand.cpp Card.o -o $@
  36.    
  37. tdeck:  Deck.h Deck.cpp Hand.o Card.o
  38.     $(CPP) $(CPPFLAGS) -DSTANDALONE -DDEBUG Deck.cpp Hand.o Card.o -o $@
  39.  
  40. Card.o: Card.h
  41. Hand.o: Hand.h
  42. Deck.obj:   Deck.h
  43.  
  44. .PHONY: clean wipe
  45.  
  46. clean:
  47.     rm -f $(APP_OBJS) $(APPLIB_OBJS)
  48.     rm -f $(TEST)
  49.  
  50. wipe:   clean
  51.     rm -f $(APP) $(APPLIB)

Commentaires

Votre commentaire :
[p] [b] [i] [u] [s] [quote] [pre] [br] [code] [url] [email] strip aide 2000

Entrez un maximum de 2000 caractères.
Améliorez la présentation de votre texte avec les balises de formatage suivantes :
[p]paragraphe[/p], [b]gras[/b], [i]italique[/i], [u]souligné[/u], [s]barré[/s], [quote]citation[/quote], [pre]tel quel[/pre], [br]à la ligne,
[url]http://www.izend.org[/url], [url=http://www.izend.org]site[/url], [email]izend@izend.org[/email], [email=izend@izend.org]izend[/email],
[code]commande[/code], [code=langage]code source en c, java, php, html, javascript, xml, css, sql, bash, dos, make, etc.[/code].