Mercurial > hg > Members > kono > nitros9-code
view 3rdparty/makefile @ 2986:6a83842642ad
sierra: Update King's Quest 4 resource files
This adds the now fixed up set.pri.base from mnln.asm
There are 4 types of resources in AGI games: logics (the game scripts),
pictures, sound and views (animated objects). These are binary files and
they are packaged in the "vol.x" files. The "dir" files (logDir, picDir,
sndDir and viewDir) are index files used to locate the resources within
the vol files.
To add the "set.pri.base" command back, I used WinAGI, an AGI game editor,
to modify the script and recompile it to a binary resource. I then rebuilt
the vol files using my "buildvol" utility. Also, I've made other changes
to KQ4 recently, so many vol files have changed:
- fixed background picture in room with the cemetary and the stone crypt
- fixed garbled dialogs in the sequence just before Rosella's wedding with Edgar
- added the "beam me" and "rap kq" easter eggs from KQ4 version 2.0
author | Guillaume Major <guillaume.major@gmail.com> |
---|---|
date | Sat, 12 Apr 2014 16:58:07 +0200 |
parents | 9edca3e61b66 |
children |
line wrap: on
line source
include ../rules.mak dirs = booters drivers fmgrs p2mods subrtns utils packages # Make all components all: @$(ECHO) "**************************************************" @$(ECHO) "* *" @$(ECHO) "* 3rd Party Software *" @$(ECHO) "* *" @$(ECHO) "**************************************************" $(foreach dir,$(dirs),$(MAKE) -C $(dir) &&) : # Clean all components clean: $(foreach dir, $(dirs), ($(CD) $(dir); make clean);) # Make DSK images dsk: $(foreach dir,$(dirs),$(MAKE) -C $(dir) dsk &&) : # Clean DSK images dskclean: $(foreach dir, $(dirs), ($(CD) $(dir); make dskclean);) # Copy DSK images dskcopy: $(foreach dir,$(dirs),$(MAKE) -C $(dir) dskcopy &&) : # Info info: @$(foreach dir, $(dirs), $(MAKE) -C $(dir) info;)