view src/sdl/Makefile.am @ 50:690c44762f6f

enable proper optional mmx.
author Robert McIntyre <rlm@mit.edu>
date Thu, 21 Mar 2013 21:30:11 +0000
parents 9c1b4651b731
children
line wrap: on
line source
1 bin_PROGRAMS = VisualBoyAdvance
3 #noinst_PROGRAMS = TestEmu
5 VisualBoyAdvance_SOURCES = \
6 Array.h \
7 debugger.h \
8 expr.cpp.h \
9 getopt.h \
10 RingBuffer.h \
11 SoundDriver.h \
12 SoundSDL.h \
13 Types.h \
14 exprNode.h \
15 \
16 debugger.cpp \
17 expr.cpp \
18 expr-lex.cpp \
19 exprNode.cpp \
20 getopt1.c \
21 getopt.c \
22 SDL.cpp \
23 SoundSDL.cpp
26 #TestEmu.cpp
29 VisualBoyAdvance_LDADD = \
30 ../common/libgbcom.a \
31 ../gb/libgb.a \
32 ../gba/libgba.a \
33 ../filters/libfilter.a \
34 @VBA_LIBS@ \
35 ../lua/libgblua.a
37 # TestEmu_SOURCES = \
38 # TestEmu.cpp \
39 # debugger.cpp \
40 # debugger.h \
41 # expr-lex.cpp \
42 # expr.cpp \
43 # expr.cpp.h \
44 # exprNode.cpp \
45 # exprNode.h \
46 # ../AutoBuild.h \
47 # ../NLS.h \
48 # ../Port.h
50 # TestEmu_LDADD = @VBA_LIBS@ @SDL_LIBS@
52 # TestEmu_DEPENDENCIES = @VBA_LIBS@
54 AM_CPPFLAGS = \
55 -I$(top_srcdir)/src \
56 -DSDL \
57 -DSYSCONFDIR=\"$(sysconfdir)\"
59 AM_CXXFLAGS = @AM_CXXFLAGS@ -fno-exceptions @SDL_CFLAGS@