aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2004-12-25 00:22:01 +0000
committerMax Horn2004-12-25 00:22:01 +0000
commite474cec330f786696afd9d263328c17dd4d65273 (patch)
tree0f9ec0a8dd25cf00f7af7427e6672308d9258400
parent385986f4b6b7d68437315395630758b039800867 (diff)
downloadscummvm-rg350-e474cec330f786696afd9d263328c17dd4d65273.tar.gz
scummvm-rg350-e474cec330f786696afd9d263328c17dd4d65273.tar.bz2
scummvm-rg350-e474cec330f786696afd9d263328c17dd4d65273.zip
Simplified building of the tools -> should fix compilation problems on Windows
svn-id: r16306
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 1669fce044..30da83c958 100644
--- a/Makefile
+++ b/Makefile
@@ -91,11 +91,11 @@ TOOLS := tools/convbdf$(EXEEXT) tools/md5table$(EXEEXT)
tools: $(TOOLS)
-tools/convbdf$(EXEEXT): tools/convbdf.o
- $(CXX) -o $@ $<
+tools/convbdf$(EXEEXT): tools/convbdf.c
+ $(CC) -Wall -o $@ $<
-tools/md5table$(EXEEXT): tools/md5table.o
- $(CXX) -o $@ $<
+tools/md5table$(EXEEXT): tools/md5table.c
+ $(CC) -Wall -o $@ $<
#simon/simon-md5.h: tools/simon-md5.txt
# tools/md5table$(EXEEXT) --c++ < $< > $@
@@ -185,4 +185,4 @@ win32dist: scummvm$(EXEEXT)
u2d $(WIN32PATH)/*.txt
-.PHONY: deb bundle test osxsnap win32dist dist install uninstall credits
+.PHONY: deb bundle test osxsnap win32dist dist install uninstall credits tools