Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- ###############################################################################
- # Automake targets and declarations for ttyvaders
- ###############################################################################
-
- AM_CFLAGS = -g -O2 -fno-strength-reduce -fomit-frame-pointer
-
- # Code qui fait des warnings == code de porc == deux baffes dans ta gueule
- AM_CFLAGS += -Wall -Wpointer-arith -Wcast-align -Wcast-qual -Wstrict-prototypes -Wshadow -Waggregate-return -Wmissing-prototypes -Wnested-externs
-
- if USE_SLANG
- LDFLAGS_slang = -lslang
- endif
- if USE_NCURSES
- LDFLAGS_ncurses = -lncurses
- endif
-
- bin_PROGRAMS = ttyvaders
-
- ttyvaders_SOURCES = \
- aliens.c \
- bonus.c \
- box.c \
- ceo.c \
- collide.c \
- common.h \
- explosions.c \
- main.c \
- overlay.c \
- player.c \
- starfield.c \
- tunnel.c \
- weapons.c \
- $(NULL)
-
- ttyvaders_CPPFLAGS = -I../libee
- ttyvaders_LDADD = ../libee/libee.a $(LDFLAGS_slang) $(LDFLAGS_ncurses)
|