diff options
| author | Max Horn | 2004-12-24 01:43:36 +0000 |
|---|---|---|
| committer | Max Horn | 2004-12-24 01:43:36 +0000 |
| commit | 426eeb909c02f1d2ac1e9b474736779f83108efc (patch) | |
| tree | b945a6bf70102f824bd17b29557b3c5479ca3adb /Makefile | |
| parent | a805372acd63000b398fec2e5b889eb5131a42ad (diff) | |
| download | scummvm-rg350-426eeb909c02f1d2ac1e9b474736779f83108efc.tar.gz scummvm-rg350-426eeb909c02f1d2ac1e9b474736779f83108efc.tar.bz2 scummvm-rg350-426eeb909c02f1d2ac1e9b474736779f83108efc.zip | |
Moving convbdf and md5table into scummvm/tools/
svn-id: r16287
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 21 |
1 files changed, 20 insertions, 1 deletions
@@ -83,6 +83,25 @@ deb: debian/prepare fakeroot debian/rules binary +####################################################################### +# Tools directory +####################################################################### + +TOOLS := tools/convbdf$(EXEEXT) tools/md5table$(EXEEXT) + +tools: $(TOOLS) + +tools/convbdf$(EXEEXT): tools/convbdf.o + $(CXX) -o $@ $< + +tools/md5table$(EXEEXT): tools/md5table.o + $(CXX) -o $@ $< + +credits: + ./credits.pl --text > AUTHORS + ./credits.pl --html > ../web/credits.inc + ./credits.pl --cpp > gui/credits.h + ./credits.pl --xml > ../docs/docbook/credits.xml ####################################################################### # Unit/regression tests # @@ -153,4 +172,4 @@ win32dist: scummvm$(EXEEXT) u2d $(WIN32PATH)/*.txt -.PHONY: deb bundle test osxsnap win32dist dist install uninstall +.PHONY: deb bundle test osxsnap win32dist dist install uninstall credits |
