diff src/gba/Makefile.am @ 19:5e8e5083da94

brought in common and gba, fixed problems with outdated Makefile.am files in both of these packages
author Robert McIntyre <rlm@mit.edu>
date Sun, 04 Mar 2012 14:33:52 -0600
parents
children e0545ef33bb9
line wrap: on
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/gba/Makefile.am	Sun Mar 04 14:33:52 2012 -0600
     1.3 @@ -0,0 +1,48 @@
     1.4 +noinst_LIBRARIES = libgba.a
     1.5 +
     1.6 +libgba_a_SOURCES = \
     1.7 +	agbprint.h	\
     1.8 +	armdis.h	\
     1.9 +	arm-new.h	\
    1.10 +	bios.h		\
    1.11 +	EEprom.h	\
    1.12 +	elf.h		\
    1.13 +	Flash.h		\
    1.14 +	GBACheats.h	\
    1.15 +	GBAGfx.h	\
    1.16 +	GBAGlobals.h	\
    1.17 +	GBA.h		\
    1.18 +	GBAinline.h	\
    1.19 +	GBASound.h	\
    1.20 +	RTC.h		\
    1.21 +	Sram.h		\
    1.22 +	thumb.h		\
    1.23 +			\
    1.24 +	agbprint.cpp	\
    1.25 +	armdis.cpp	\
    1.26 +	bios.cpp	\
    1.27 +	EEprom.cpp	\
    1.28 +	elf.cpp		\
    1.29 +	Flash.cpp	\
    1.30 +	GBACheats.cpp	\
    1.31 +	GBA.cpp		\
    1.32 +	GBAGfx.cpp	\
    1.33 +	GBAGlobals.cpp	\
    1.34 +	GBASound.cpp	\
    1.35 +	Mode0.cpp	\
    1.36 +	Mode1.cpp	\
    1.37 +	Mode2.cpp	\
    1.38 +	Mode3.cpp	\
    1.39 +	Mode4.cpp	\
    1.40 +	Mode5.cpp	\
    1.41 +	remote.cpp	\
    1.42 +	RTC.cpp		\
    1.43 +	Sram.cpp	
    1.44 +
    1.45 +
    1.46 +AM_CPPFLAGS = \
    1.47 +	-I$(top_srcdir)/src		\
    1.48 +	-DSDL				\
    1.49 +	-DSYSCONFDIR=\"$(sysconfdir)\"
    1.50 +
    1.51 +AM_CXXFLAGS = -fno-exceptions @SDL_CFLAGS@