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 | |
---|
5 | AM_CFLAGS = -g -O6 -fno-strength-reduce -fomit-frame-pointer |
---|
6 | |
---|
7 | # Code qui fait des warnings == code de porc == deux baffes dans ta gueule |
---|
8 | AM_CFLAGS += -Wall -Wpointer-arith -Wcast-align -Wcast-qual -Wstrict-prototypes -Wshadow -Waggregate-return -Wmissing-prototypes -Wnested-externs |
---|
9 | |
---|
10 | if USE_NCURSES |
---|
11 | CPPFLAGS_gfx = -DUSE_NCURSES |
---|
12 | LDFLAGS_gfx = -lncurses |
---|
13 | else |
---|
14 | CPPFLAGS_gfx = -DUSE_SLANG |
---|
15 | LDFLAGS_gfx = -lslang |
---|
16 | endif |
---|
17 | |
---|
18 | bin_PROGRAMS = ttyvaders |
---|
19 | |
---|
20 | ttyvaders_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 | |
---|
35 | ttyvaders_CPPFLAGS = $(CPPFLAGS_gfx) |
---|
36 | ttyvaders_LDADD = $(LDFLAGS_gfx) |
---|
37 | |
---|
Note: See
TracBrowser
for help on using the repository browser.