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
|
Rev | Line | |
---|
[18] | 1 | ############################################################################### |
---|
| 2 | # Automake targets and declarations for ttyvaders |
---|
| 3 | ############################################################################### |
---|
| 4 | |
---|
[20] | 5 | AM_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] | 8 | AM_CFLAGS += -Wall -Wpointer-arith -Wcast-align -Wcast-qual -Wstrict-prototypes -Wshadow -Waggregate-return -Wmissing-prototypes -Wnested-externs |
---|
[18] | 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 \ |
---|
[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 | |
---|
| 34 | ttyvaders_CPPFLAGS = $(CPPFLAGS_gfx) |
---|
| 35 | ttyvaders_LDADD = $(LDFLAGS_gfx) |
---|
| 36 | |
---|
Note: See
TracBrowser
for help on using the repository browser.