blob: 9dc5cb11e2b716a679a1ed14ce860ca77254f314 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
gamesdir = $(prefix)/games
AM_CFLAGS = @SDL_CFLAGS@ -I../textscreen -I../src -DINSTALL_DIR="\"$(gamesdir)\""
games_PROGRAMS = chocolate-setup
chocolate_setup_LDADD = @LDFLAGS@ @SDL_LIBS@ ../textscreen/libtextscreen.a
chocolate_setup_SOURCES = \
compatibility.c compatibility.h \
display.c display.h \
keyboard.c keyboard.h \
mainmenu.c \
mouse.c mouse.h \
multiplayer.c multiplayer.h \
sound.c sound.h \
testconfig.c testconfig.h \
txt_keyinput.c txt_keyinput.h \
txt_mouseinput.c txt_mouseinput.h
|