summaryrefslogtreecommitdiff
path: root/src/tool/moneycount/Makefile
diff options
context:
space:
mode:
authorChuck Miller <shadowmil@gmail.com>2010-06-21 13:12:27 -0400
committerChuck Miller <shadowmil@gmail.com>2010-06-21 13:16:56 -0400
commit3697be69b0dffc185c9b4cf8221c782f48546771 (patch)
treed7446a76f046de6d1e1d0239ebccf9d4ba8f5b39 /src/tool/moneycount/Makefile
parent14655f336082a85eaafaae8f54f9a5d9a2c6f061 (diff)
downloadtmwa-3697be69b0dffc185c9b4cf8221c782f48546771.tar.gz
tmwa-3697be69b0dffc185c9b4cf8221c782f48546771.tar.bz2
tmwa-3697be69b0dffc185c9b4cf8221c782f48546771.tar.xz
tmwa-3697be69b0dffc185c9b4cf8221c782f48546771.zip
Use the stlplus::inf class in the money count to avoid overflow
Also changed the degree of freedom to 0
Diffstat (limited to 'src/tool/moneycount/Makefile')
-rw-r--r--src/tool/moneycount/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/tool/moneycount/Makefile b/src/tool/moneycount/Makefile
index 27cd98e..e7b7022 100644
--- a/src/tool/moneycount/Makefile
+++ b/src/tool/moneycount/Makefile
@@ -1,13 +1,14 @@
all: moneycount
-OBJECTS = main.o athena_text.o
+OBJECTS = main.o athena_text.o inf.o portability_fixes.o
CPP = g++
moneycount: $(OBJECTS)
$(CPP) -o $@ $(OBJECTS) $(COMMON_OBJS) $(LIBS)
main.o: main.cpp
athena_text.o: athena_text.cpp athena_text.h
-
+inf.o: inf.cpp inf.hpp
+portability_fixes.o: portability_fixes.cpp portability_fixes.hpp portability_exceptions.hpp
clean:
rm -f *.o moneycount