annotate src/gb/Makefile.am @ 579:9f2b221bbf9b

row and columns increment correctly now.
author Robert McIntyre <rlm@mit.edu>
date Sat, 01 Sep 2012 06:03:08 -0500
parents f6ff410a87fd
children
rev   line source
rlm@45 1 noinst_LTLIBRARIES = libgb.la
rlm@1 2
rlm@45 3 libgb_la_SOURCES = \
rlm@1 4 gbCheats.h \
rlm@1 5 gbCodesCB.h \
rlm@1 6 gbCodes.h \
rlm@18 7 gbGlobals.h \
rlm@18 8 GB.h \
rlm@18 9 gbMemory.h \
rlm@18 10 gbPrinter.h \
rlm@18 11 gbSGB.h \
rlm@18 12 gbSound.h \
rlm@18 13 \
rlm@18 14 gbCheats.cpp \
rlm@1 15 GB.cpp \
rlm@1 16 gbDis.cpp \
rlm@1 17 gbGfx.cpp \
rlm@1 18 gbGlobals.cpp \
rlm@1 19 gbMemory.cpp \
rlm@1 20 gbPrinter.cpp \
rlm@1 21 gbSGB.cpp \
rlm@18 22 gbSound.cpp
rlm@18 23
rlm@18 24