mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 12:39:56 +00:00
d724df4662
add make rules for output FON and MIX files Create wrappers for all scripts to check for python 2.7 update module.mk to create FON file, then create the SUBTITLES.MIX file Remove the intermediate TRE files. Input is expected to be in sampleInput folder
90 lines
2.7 KiB
Makefile
90 lines
2.7 KiB
Makefile
|
|
MODULE := devtools
|
|
|
|
MODULE_DIRS += \
|
|
devtools/
|
|
|
|
|
|
#######################################################################
|
|
# Tools directory
|
|
#######################################################################
|
|
|
|
DEVTOOLS := \
|
|
devtools/convbdf$(EXEEXT) \
|
|
devtools/md5table$(EXEEXT) \
|
|
devtools/make-scumm-fontdata$(EXEEXT)
|
|
|
|
include $(srcdir)/devtools/*/module.mk $(srcdir)/devtools/*/*/module.mk
|
|
|
|
.PHONY: $(srcdir)/devtools/*/module.mk $(srcdir)/devtools/*/*/module.mk
|
|
|
|
# Make sure the 'all' / 'clean' targets build/clean the devtools, too
|
|
#all:
|
|
clean: clean-devtools
|
|
|
|
# Main target
|
|
devtools: $(DEVTOOLS)
|
|
|
|
clean-devtools:
|
|
-$(RM) $(DEVTOOLS)
|
|
|
|
#
|
|
# Build rules for the devtools
|
|
#
|
|
|
|
devtools/convbdf$(EXEEXT): $(srcdir)/devtools/convbdf.cpp
|
|
$(QUIET)$(MKDIR) devtools/$(DEPDIR)
|
|
$(QUIET_LINK)$(LD) $(CXXFLAGS) -Wall -o $@ $<
|
|
|
|
devtools/md5table$(EXEEXT): $(srcdir)/devtools/md5table.c
|
|
$(QUIET)$(MKDIR) devtools/$(DEPDIR)
|
|
$(QUIET_LINK)$(LD) $(CFLAGS) -Wall -o $@ $<
|
|
|
|
devtools/make-scumm-fontdata$(EXEEXT): $(srcdir)/devtools/make-scumm-fontdata.c
|
|
$(QUIET)$(MKDIR) devtools/$(DEPDIR)
|
|
$(QUIET_LINK)$(LD) $(CFLAGS) -Wall -o $@ $<
|
|
|
|
# Rule to explicitly rebuild the wwwroot archive
|
|
wwwroot:
|
|
$(srcdir)/devtools/make-www-archive.py $(srcdir)/dists/networking/
|
|
|
|
|
|
#
|
|
# Rules to explicitly rebuild the credits / MD5 tables.
|
|
# The rules for the files in the "web" resp. "docs" modules
|
|
# assume that you are invoking "make" from within a complete
|
|
# checkout of the ScummVM repository. Of course if that is not the
|
|
# case, then you have to modify those paths...
|
|
#
|
|
|
|
credits:
|
|
$(srcdir)/devtools/credits.pl --text > $(srcdir)/AUTHORS
|
|
# $(srcdir)/devtools/credits.pl --rtf > $(srcdir)/Credits.rtf
|
|
$(srcdir)/devtools/credits.pl --cpp > $(srcdir)/gui/credits.h
|
|
$(srcdir)/devtools/credits.pl --xml-website > $(srcdir)/../scummvm-web/data/credits.xml
|
|
# $(srcdir)/devtools/credits.pl --xml-docbook > $(srcdir)/../../docs/trunk/docbook/credits.xml
|
|
|
|
md5scumm: devtools/md5table$(EXEEXT)
|
|
devtools/md5table$(EXEEXT) --c++ < $(srcdir)/devtools/scumm-md5.txt > $(srcdir)/engines/scumm/scumm-md5.h
|
|
|
|
#
|
|
# Rules which automatically and implicitly rebuild the credits and
|
|
# MD5 tables when needed.
|
|
# These are currently disabled, because if the input data changes, then
|
|
# the generated files should be checked in, too. Otherwise, we'd reduce
|
|
# portability to system on which our devtools can't (automatically) be
|
|
# run for some reason.
|
|
#
|
|
|
|
#scumm/scumm-md5.h: $(srcdir)/devtools/scumm-md5.txt devtools/md5table$(EXEEXT)
|
|
# devtools/md5table$(EXEEXT) --c++ < $< > $@
|
|
|
|
#AUTHORS: $(srcdir)/devtools/credits.pl
|
|
# $(srcdir)/devtools/credits.pl --text > $@
|
|
|
|
#gui/credits.h: $(srcdir)/devtools/credits.pl
|
|
# $(srcdir)/devtools/credits.pl --cpp > $@
|
|
|
|
|
|
.PHONY: clean-devtools devtools credits md5scumm
|