Mercurial > vba-linux
comparison src/sdl/Makefile.am @ 1:f9f4f1b99eed
importing src directory
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Sat, 03 Mar 2012 10:31:27 -0600 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
0:8ced16adf2e1 | 1:f9f4f1b99eed |
---|---|
1 bin_PROGRAMS = VisualBoyAdvance | |
2 | |
3 noinst_PROGRAMS = TestEmu | |
4 | |
5 VisualBoyAdvance_SOURCES = \ | |
6 SDL.cpp \ | |
7 debugger.cpp \ | |
8 debugger.h \ | |
9 expr-lex.cpp \ | |
10 expr.cpp \ | |
11 expr.cpp.h \ | |
12 exprNode.cpp \ | |
13 exprNode.h \ | |
14 getopt.c \ | |
15 getopt.h \ | |
16 getopt1.c \ | |
17 ../AutoBuild.h \ | |
18 ../NLS.h \ | |
19 ../Port.h | |
20 | |
21 VisualBoyAdvance_LDADD = @VBA_LIBS@ @SDL_LIBS@ | |
22 | |
23 VisualBoyAdvance_DEPENDENCIES = @VBA_LIBS@ | |
24 | |
25 TestEmu_SOURCES = \ | |
26 TestEmu.cpp \ | |
27 debugger.cpp \ | |
28 debugger.h \ | |
29 expr-lex.cpp \ | |
30 expr.cpp \ | |
31 expr.cpp.h \ | |
32 exprNode.cpp \ | |
33 exprNode.h \ | |
34 ../AutoBuild.h \ | |
35 ../NLS.h \ | |
36 ../Port.h | |
37 | |
38 TestEmu_LDADD = @VBA_LIBS@ @SDL_LIBS@ | |
39 | |
40 TestEmu_DEPENDENCIES = @VBA_LIBS@ | |
41 | |
42 AM_CPPFLAGS = \ | |
43 -I$(top_srcdir)/src \ | |
44 -DSDL \ | |
45 -DSYSCONFDIR=\"$(sysconfdir)\" | |
46 | |
47 AM_CXXFLAGS = -fno-exceptions @SDL_CFLAGS@ |