source: ttyvaders/trunk/src/Makefile.am @ 34

Last change on this file since 34 was 34, checked in by Sam Hocevar, 20 years ago
  • tab == hotkey for CEO alert.
File size: 902 bytes
Line 
1###############################################################################
2# Automake targets and declarations for ttyvaders
3###############################################################################
4
5AM_CFLAGS = -g -O6 -fno-strength-reduce -fomit-frame-pointer
6
7# Code qui fait des warnings == code de porc == deux baffes dans ta gueule
8AM_CFLAGS += -Wall -Wpointer-arith -Wcast-align -Wcast-qual -Wstrict-prototypes -Wshadow -Waggregate-return -Wmissing-prototypes -Wnested-externs
9
10if USE_NCURSES
11CPPFLAGS_gfx = -DUSE_NCURSES
12LDFLAGS_gfx = -lncurses
13else
14CPPFLAGS_gfx = -DUSE_SLANG
15LDFLAGS_gfx = -lslang
16endif
17
18bin_PROGRAMS = ttyvaders
19
20ttyvaders_SOURCES = \
21        aliens.c \
22        bonus.c \
23        ceo.c \
24        common.h \
25        explosions.c \
26        main.c \
27        starfield.c \
28        weapons.c \
29        collide.c \
30        graphics.c \
31        player.c \
32        tunnel.c \
33        $(NULL)
34
35ttyvaders_CPPFLAGS = $(CPPFLAGS_gfx)
36ttyvaders_LDADD = $(LDFLAGS_gfx)
37
Note: See TracBrowser for help on using the repository browser.