view src/sdl/Makefile.am @ 30:48369c6aeaa0 compile-milestone

brought prof package in
author Robert McIntyre <rlm@mit.edu>
date Sun, 04 Mar 2012 22:32:01 -0600
parents 2efb971df515
children 3907aac7df1c
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/lib386.a \
34 ../filters/libfilter.a \
35 ../prof/libprof.a \
36 ../lua/libgblua.a
38 # TestEmu_SOURCES = \
39 # TestEmu.cpp \
40 # debugger.cpp \
41 # debugger.h \
42 # expr-lex.cpp \
43 # expr.cpp \
44 # expr.cpp.h \
45 # exprNode.cpp \
46 # exprNode.h \
47 # ../AutoBuild.h \
48 # ../NLS.h \
49 # ../Port.h
51 # TestEmu_LDADD = @VBA_LIBS@ @SDL_LIBS@
53 # TestEmu_DEPENDENCIES = @VBA_LIBS@
55 AM_CPPFLAGS = \
56 -I$(top_srcdir)/src \
57 -DSDL \
58 -DSYSCONFDIR=\"$(sysconfdir)\"
60 AM_CXXFLAGS = -fno-exceptions @SDL_CFLAGS@