diff 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
line wrap: on
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/sdl/Makefile.am	Sat Mar 03 10:31:27 2012 -0600
     1.3 @@ -0,0 +1,47 @@
     1.4 +bin_PROGRAMS = VisualBoyAdvance
     1.5 +
     1.6 +noinst_PROGRAMS = TestEmu
     1.7 +
     1.8 +VisualBoyAdvance_SOURCES = \
     1.9 +	SDL.cpp			\
    1.10 +	debugger.cpp		\
    1.11 +	debugger.h		\
    1.12 +	expr-lex.cpp		\
    1.13 +	expr.cpp		\
    1.14 +	expr.cpp.h		\
    1.15 +	exprNode.cpp		\
    1.16 +	exprNode.h		\
    1.17 +	getopt.c		\
    1.18 +	getopt.h		\
    1.19 +	getopt1.c		\
    1.20 +	../AutoBuild.h		\
    1.21 +	../NLS.h		\
    1.22 +	../Port.h
    1.23 +
    1.24 +VisualBoyAdvance_LDADD = @VBA_LIBS@ @SDL_LIBS@
    1.25 +
    1.26 +VisualBoyAdvance_DEPENDENCIES = @VBA_LIBS@
    1.27 +
    1.28 +TestEmu_SOURCES = \
    1.29 +	TestEmu.cpp		\
    1.30 +	debugger.cpp		\
    1.31 +	debugger.h		\
    1.32 +	expr-lex.cpp		\
    1.33 +	expr.cpp		\
    1.34 +	expr.cpp.h		\
    1.35 +	exprNode.cpp		\
    1.36 +	exprNode.h		\
    1.37 +	../AutoBuild.h		\
    1.38 +	../NLS.h		\
    1.39 +	../Port.h
    1.40 +
    1.41 +TestEmu_LDADD = @VBA_LIBS@ @SDL_LIBS@
    1.42 +
    1.43 +TestEmu_DEPENDENCIES = @VBA_LIBS@
    1.44 +
    1.45 +AM_CPPFLAGS = \
    1.46 +	-I$(top_srcdir)/src		\
    1.47 +	-DSDL				\
    1.48 +	-DSYSCONFDIR=\"$(sysconfdir)\"
    1.49 +
    1.50 +AM_CXXFLAGS = -fno-exceptions @SDL_CFLAGS@