diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-03-03 12:42:21 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-03-03 12:42:21 +0000 |
commit | df5ee2a5c32258e0d993c7d7c917c75299ee9ae4 (patch) | |
tree | 8303eec548a78ae1f8b543aea8658d37321e772b /src/Makefile.am | |
parent | dbda6463fd8a9c3136daf64e79b5515812a2e40f (diff) | |
download | mana-df5ee2a5c32258e0d993c7d7c917c75299ee9ae4.tar.gz mana-df5ee2a5c32258e0d993c7d7c917c75299ee9ae4.tar.bz2 mana-df5ee2a5c32258e0d993c7d7c917c75299ee9ae4.tar.xz mana-df5ee2a5c32258e0d993c7d7c917c75299ee9ae4.zip |
Separated graphic/graphic.cpp into graphics.cpp and engine.cpp.
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 534ff962..9fc479d9 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,7 +1,5 @@ bin_PROGRAMS = tmw -tmw_SOURCES = graphic/graphic.cpp \ - graphic/graphic.h \ - graphic/spriteset.cpp \ +tmw_SOURCES = graphic/spriteset.cpp \ graphic/spriteset.h \ gui/button.cpp \ gui/button.h \ @@ -94,10 +92,14 @@ tmw_SOURCES = graphic/graphic.cpp \ being.h \ configuration.cpp \ configuration.h \ + engine.cpp \ + engine.h \ floor_item.cpp \ floor_item.h \ game.cpp \ game.h \ + graphics.cpp \ + graphics.h \ log.cpp \ log.h \ main.cpp \ |