1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
bin_PROGRAMS = gnujump
# set the include path found by configure
INCLUDES= $(all_includes)
# the library search path.
gnujump_LDFLAGS = -Wl,--as-needed
gnujump_LDADD = $(all_libraries) -lm
gnujump_SOURCES = \
game.h \
menu.h \
records.h \
SDL_2dgl.h \
gnujump.h\
SDL_rotozoom.h \
setup.h \
SFont.h \
sprite.h \
surface.h \
effects.h \
gettext.h \
replay.h \
tools.h \
game.c\
game-input.c\
game-output.c\
game-logic.c\
game-tools.c\
game-timer.c\
main.c\
menu.c\
menu-system.c\
records.c\
SDL_2dgl.c\
SDL_rotozoom.c \
setup.c \
SFont.c \
sprite.c \
surface.c \
tools.c \
replay.c \
effects-trail.c \
effects-blur.c
datadirdir = $(datadir)/$(package)
datadir = @datadir@
localedir = $(datadir)/locale
DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@
|