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

Last change on this file since 20 was 20, checked in by Sam Hocevar, 20 years ago
  • real Debian package files.
  • two new types of aliens. only one rules.
  • removed gfx_write in favor of gfx_putchar and gfx_putstr.
  • added bonuses at alien death. they do nothing yet.
  • seeker missiles. 'b' to test.
  • weapon resolution is now 16*char. needs to be generalized.
  • fixed the supernova bugs. center could collide with the tunnel, and the last frame was badly displayed.
  • lots of cleanups everywhere.
File size: 893 bytes
RevLine 
[18]1###############################################################################
2# Automake targets and declarations for ttyvaders
3###############################################################################
4
[20]5AM_CFLAGS = -g -O6 -fno-strength-reduce -fomit-frame-pointer
[18]6
7# Code qui fait des warnings == code de porc == deux baffes dans ta gueule
[20]8AM_CFLAGS += -Wall -Wpointer-arith -Wcast-align -Wcast-qual -Wstrict-prototypes -Wshadow -Waggregate-return -Wmissing-prototypes -Wnested-externs
[18]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 \
[20]22        bonus.c \
[18]23        common.h \
24        explosions.c \
25        main.c \
26        starfield.c \
27        weapons.c \
28        collide.c \
29        graphics.c \
30        player.c \
31        tunnel.c \
32        $(NULL)
33
34ttyvaders_CPPFLAGS = $(CPPFLAGS_gfx)
35ttyvaders_LDADD = $(LDFLAGS_gfx)
36
Note: See TracBrowser for help on using the repository browser.