comparison 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
comparison
equal deleted inserted replaced
29:2fa26addb901 30:48369c6aeaa0
1 bin_PROGRAMS = VisualBoyAdvance 1 bin_PROGRAMS = VisualBoyAdvance
2 2
3 #noinst_PROGRAMS = TestEmu 3 #noinst_PROGRAMS = TestEmu
4 4
5 VisualBoyAdvance_SOURCES = \ 5 VisualBoyAdvance_SOURCES = \
6 SDL.cpp \ 6 Array.h \
7 debugger.cpp \ 7 debugger.h \
8 debugger.h \ 8 expr.cpp.h \
9 expr-lex.cpp \ 9 getopt.h \
10 expr.cpp \ 10 RingBuffer.h \
11 expr.cpp.h \ 11 SoundDriver.h \
12 exprNode.cpp \ 12 SoundSDL.h \
13 exprNode.h \ 13 Types.h \
14 getopt.c \ 14 exprNode.h \
15 getopt.h \ 15 \
16 getopt1.c \ 16 debugger.cpp \
17 ../AutoBuild.h \ 17 expr.cpp \
18 ../NLS.h \ 18 expr-lex.cpp \
19 ../Port.h 19 exprNode.cpp \
20 getopt1.c \
21 getopt.c \
22 SDL.cpp \
23 SoundSDL.cpp
24
25
26 #TestEmu.cpp
27
20 28
21 VisualBoyAdvance_LDADD = \ 29 VisualBoyAdvance_LDADD = \
22 ../lua/libgblua.a \
23 ../common/libgbcom.a \ 30 ../common/libgbcom.a \
24 ../gb/libgb.a \ 31 ../gb/libgb.a \
25 ../gba/libgba.a \ 32 ../gba/libgba.a \
26 ../filters/lib386.a \ 33 ../filters/lib386.a \
27 ../filters/libfilter.a 34 ../filters/libfilter.a \
35 ../prof/libprof.a \
36 ../lua/libgblua.a
28 37
29 # TestEmu_SOURCES = \ 38 # TestEmu_SOURCES = \
30 # TestEmu.cpp \ 39 # TestEmu.cpp \
31 # debugger.cpp \ 40 # debugger.cpp \
32 # debugger.h \ 41 # debugger.h \
46 AM_CPPFLAGS = \ 55 AM_CPPFLAGS = \
47 -I$(top_srcdir)/src \ 56 -I$(top_srcdir)/src \
48 -DSDL \ 57 -DSDL \
49 -DSYSCONFDIR=\"$(sysconfdir)\" 58 -DSYSCONFDIR=\"$(sysconfdir)\"
50 59
51 AM_CXXFLAGS = -fno-exceptions 60 AM_CXXFLAGS = -fno-exceptions @SDL_CFLAGS@