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