2017-01-26 23:27:55 +01:00
|
|
|
# This file has been dedicated to the public domain, to the extent
|
|
|
|
# possible under applicable law, via CC0. See
|
|
|
|
# http://creativecommons.org/publicdomain/zero/1.0/ for more
|
|
|
|
# information. This file is offered as-is, without any warranty.
|
|
|
|
|
|
|
|
bin_PROGRAMS = starfighter
|
|
|
|
|
2019-06-06 04:13:48 +02:00
|
|
|
if RUN_IN_PLACE
|
|
|
|
starfighter_CPPFLAGS = $(STARFIGHTER_CFLAGS) -Wall
|
|
|
|
else
|
2019-05-20 07:56:16 +02:00
|
|
|
starfighter_CPPFLAGS = $(STARFIGHTER_CFLAGS) -DDATADIR=\"$(pkgdatadir)\" -Wall
|
2019-06-06 04:13:48 +02:00
|
|
|
endif
|
|
|
|
|
2019-06-04 04:36:03 +02:00
|
|
|
starfighter_CFLAGS = $(SDL_CFLAGS) $(PANGO_CFLAGS) -lm
|
|
|
|
starfighter_LDADD = $(SDL_LIBS) $(PANGO_LIBS)
|
2017-01-26 23:27:55 +01:00
|
|
|
|
|
|
|
starfighter_SOURCES = \
|
2019-05-23 17:02:48 +02:00
|
|
|
Starfighter.c \
|
|
|
|
alien.c \
|
2017-01-26 23:27:55 +01:00
|
|
|
alien.h \
|
2019-05-23 17:02:48 +02:00
|
|
|
audio.c \
|
2017-01-26 23:27:55 +01:00
|
|
|
audio.h \
|
2019-05-23 17:02:48 +02:00
|
|
|
bullet.c \
|
2017-01-26 23:27:55 +01:00
|
|
|
bullet.h \
|
2019-05-23 17:02:48 +02:00
|
|
|
cargo.c \
|
2017-01-26 23:27:55 +01:00
|
|
|
cargo.h \
|
2019-05-23 17:02:48 +02:00
|
|
|
collectable.c \
|
2017-01-26 23:27:55 +01:00
|
|
|
collectable.h \
|
2019-05-23 17:02:48 +02:00
|
|
|
colors.c \
|
2017-01-26 23:27:55 +01:00
|
|
|
colors.h \
|
2019-05-23 17:02:48 +02:00
|
|
|
cutscene.c \
|
2017-01-26 23:27:55 +01:00
|
|
|
cutscene.h \
|
2019-05-23 17:02:48 +02:00
|
|
|
defs.c \
|
2017-01-26 23:27:55 +01:00
|
|
|
defs.h \
|
2019-05-23 17:02:48 +02:00
|
|
|
engine.c \
|
2017-01-26 23:27:55 +01:00
|
|
|
engine.h \
|
2019-05-23 17:02:48 +02:00
|
|
|
event.c \
|
2017-01-26 23:27:55 +01:00
|
|
|
event.h \
|
2019-05-23 17:02:48 +02:00
|
|
|
explosion.c \
|
2017-01-26 23:27:55 +01:00
|
|
|
explosion.h \
|
2019-05-23 17:02:48 +02:00
|
|
|
game.c \
|
2017-01-26 23:27:55 +01:00
|
|
|
game.h \
|
2019-05-23 17:02:48 +02:00
|
|
|
gfx.c \
|
2017-01-26 23:27:55 +01:00
|
|
|
gfx.h \
|
2019-05-23 17:02:48 +02:00
|
|
|
info.c \
|
2017-01-26 23:27:55 +01:00
|
|
|
info.h \
|
2019-05-23 17:02:48 +02:00
|
|
|
intermission.c \
|
2017-01-26 23:27:55 +01:00
|
|
|
intermission.h \
|
2019-05-23 17:02:48 +02:00
|
|
|
mission.c \
|
2017-01-26 23:27:55 +01:00
|
|
|
mission.h \
|
2019-05-23 17:02:48 +02:00
|
|
|
player.c \
|
2017-01-26 23:27:55 +01:00
|
|
|
player.h \
|
2019-05-23 17:02:48 +02:00
|
|
|
radio.c \
|
2017-01-26 23:27:55 +01:00
|
|
|
radio.h \
|
2019-05-23 17:02:48 +02:00
|
|
|
renderer.c \
|
2017-01-26 23:27:55 +01:00
|
|
|
renderer.h \
|
2019-05-23 17:02:48 +02:00
|
|
|
save.c \
|
2017-01-26 23:27:55 +01:00
|
|
|
save.h \
|
2019-05-23 17:02:48 +02:00
|
|
|
screen.c \
|
2017-01-26 23:27:55 +01:00
|
|
|
screen.h \
|
2019-05-23 17:02:48 +02:00
|
|
|
ship.c \
|
2017-01-26 23:27:55 +01:00
|
|
|
ship.h \
|
2019-05-23 17:02:48 +02:00
|
|
|
shop.c \
|
2017-01-26 23:27:55 +01:00
|
|
|
shop.h \
|
|
|
|
structs.h \
|
2019-05-23 17:02:48 +02:00
|
|
|
title.c \
|
2017-01-26 23:27:55 +01:00
|
|
|
title.h \
|
2019-05-23 17:02:48 +02:00
|
|
|
weapons.c \
|
2017-01-26 23:27:55 +01:00
|
|
|
weapons.h \
|
2019-05-23 17:02:48 +02:00
|
|
|
window.c \
|
2017-01-26 23:27:55 +01:00
|
|
|
window.h
|