Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 

37 řádky
893 B

  1. ###############################################################################
  2. # Automake targets and declarations for ttyvaders
  3. ###############################################################################
  4. AM_CFLAGS = -g -O6 -fno-strength-reduce -fomit-frame-pointer
  5. # Code qui fait des warnings == code de porc == deux baffes dans ta gueule
  6. AM_CFLAGS += -Wall -Wpointer-arith -Wcast-align -Wcast-qual -Wstrict-prototypes -Wshadow -Waggregate-return -Wmissing-prototypes -Wnested-externs
  7. if USE_NCURSES
  8. CPPFLAGS_gfx = -DUSE_NCURSES
  9. LDFLAGS_gfx = -lncurses
  10. else
  11. CPPFLAGS_gfx = -DUSE_SLANG
  12. LDFLAGS_gfx = -lslang
  13. endif
  14. bin_PROGRAMS = ttyvaders
  15. ttyvaders_SOURCES = \
  16. aliens.c \
  17. bonus.c \
  18. common.h \
  19. explosions.c \
  20. main.c \
  21. starfield.c \
  22. weapons.c \
  23. collide.c \
  24. graphics.c \
  25. player.c \
  26. tunnel.c \
  27. $(NULL)
  28. ttyvaders_CPPFLAGS = $(CPPFLAGS_gfx)
  29. ttyvaders_LDADD = $(LDFLAGS_gfx)