annotate src/sdl/Makefile.am @ 318:9a4d3f801c89

fixing runs to use new util functions.
author Robert McIntyre <rlm@mit.edu>
date Mon, 02 Apr 2012 23:13:49 -0500
parents efa68261dba1
children
rev   line source
rlm@47 1 noinst_LTLIBRARIES = libgui.la
rlm@28 2
rlm@28 3 #noinst_PROGRAMS = TestEmu
rlm@28 4
rlm@47 5 libgui_la_SOURCES = \
rlm@30 6 Array.h \
rlm@30 7 debugger.h \
rlm@30 8 expr.cpp.h \
rlm@30 9 getopt.h \
rlm@30 10 RingBuffer.h \
rlm@30 11 SoundDriver.h \
rlm@30 12 SoundSDL.h \
rlm@30 13 Types.h \
rlm@30 14 exprNode.h \
rlm@30 15 \
rlm@30 16 debugger.cpp \
rlm@30 17 expr.cpp \
rlm@30 18 expr-lex.cpp \
rlm@30 19 exprNode.cpp \
rlm@30 20 getopt1.c \
rlm@30 21 getopt.c \
rlm@30 22 SDL.cpp \
rlm@30 23 SoundSDL.cpp
rlm@30 24
rlm@30 25
rlm@30 26 #TestEmu.cpp
rlm@30 27
rlm@28 28
rlm@47 29 # libvba_la_LIBADD = \
rlm@47 30 # ../common/libgbcom.la \
rlm@47 31 # ../gb/libgb.la \
rlm@47 32 # ../gba/libgba.la \
rlm@47 33 # ../filters/lib386.la \
rlm@47 34 # ../filters/libfilter.la \
rlm@47 35 # ../prof/libprof.la \
rlm@47 36 # ../clojure/libgbclojure.la \
rlm@47 37 # ../lua/libgblua.la
rlm@28 38
rlm@28 39 # TestEmu_SOURCES = \
rlm@28 40 # TestEmu.cpp \
rlm@28 41 # debugger.cpp \
rlm@28 42 # debugger.h \
rlm@28 43 # expr-lex.cpp \
rlm@28 44 # expr.cpp \
rlm@28 45 # expr.cpp.h \
rlm@28 46 # exprNode.cpp \
rlm@28 47 # exprNode.h \
rlm@28 48 # ../AutoBuild.h \
rlm@28 49 # ../NLS.h \
rlm@28 50 # ../Port.h
rlm@28 51
rlm@28 52 # TestEmu_LDADD = @VBA_LIBS@ @SDL_LIBS@
rlm@28 53
rlm@28 54 # TestEmu_DEPENDENCIES = @VBA_LIBS@
rlm@28 55
rlm@28 56 AM_CPPFLAGS = \
rlm@28 57 -I$(top_srcdir)/src \
rlm@28 58 -DSDL \
rlm@28 59 -DSYSCONFDIR=\"$(sysconfdir)\"
rlm@28 60
rlm@30 61 AM_CXXFLAGS = -fno-exceptions @SDL_CFLAGS@