Last change
on this file since 18 was
18,
checked in by Sam Hocevar, 20 years ago
|
- autotoolificationized the whole thing.
|
File size:
886 bytes
|
Line | |
---|
1 | ############################################################################### |
---|
2 | # Automake targets and declarations for ttyvaders |
---|
3 | ############################################################################### |
---|
4 | |
---|
5 | AM_CPPFLAGS = -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_CPPFLAGS += -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 | common.h \ |
---|
23 | explosions.c \ |
---|
24 | main.c \ |
---|
25 | starfield.c \ |
---|
26 | weapons.c \ |
---|
27 | collide.c \ |
---|
28 | graphics.c \ |
---|
29 | player.c \ |
---|
30 | tunnel.c \ |
---|
31 | $(NULL) |
---|
32 | |
---|
33 | ttyvaders_CPPFLAGS = $(CPPFLAGS_gfx) |
---|
34 | ttyvaders_LDADD = $(LDFLAGS_gfx) |
---|
35 | |
---|
Note: See
TracBrowser
for help on using the repository browser.