diff options
| author | Max Horn | 2004-12-25 00:22:01 +0000 |
|---|---|---|
| committer | Max Horn | 2004-12-25 00:22:01 +0000 |
| commit | e474cec330f786696afd9d263328c17dd4d65273 (patch) | |
| tree | 0f9ec0a8dd25cf00f7af7427e6672308d9258400 | |
| parent | 385986f4b6b7d68437315395630758b039800867 (diff) | |
| download | scummvm-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-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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 |
