view src/sdl/Makefile.am @ 46:b1969e1b310d

added skeleton clojure gb driver
author Robert McIntyre <rlm@mit.edu>
date Tue, 06 Mar 2012 23:43:52 -0600
parents f6ff410a87fd
children efa68261dba1
line wrap: on
line source
1 lib_LTLIBRARIES = libvba.la
3 #noinst_PROGRAMS = TestEmu
5 libvba_la_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 libvba_la_LIBADD = \
30 ../common/libgbcom.la \
31 ../gb/libgb.la \
32 ../gba/libgba.la \
33 ../filters/lib386.la \
34 ../filters/libfilter.la \
35 ../prof/libprof.la \
36 ../clojure/libgbclojure.la \
37 ../lua/libgblua.la
39 # TestEmu_SOURCES = \
40 # TestEmu.cpp \
41 # debugger.cpp \
42 # debugger.h \
43 # expr-lex.cpp \
44 # expr.cpp \
45 # expr.cpp.h \
46 # exprNode.cpp \
47 # exprNode.h \
48 # ../AutoBuild.h \
49 # ../NLS.h \
50 # ../Port.h
52 # TestEmu_LDADD = @VBA_LIBS@ @SDL_LIBS@
54 # TestEmu_DEPENDENCIES = @VBA_LIBS@
56 AM_CPPFLAGS = \
57 -I$(top_srcdir)/src \
58 -DSDL \
59 -DSYSCONFDIR=\"$(sysconfdir)\"
61 AM_CXXFLAGS = -fno-exceptions @SDL_CFLAGS@