Skip to content

Tool: MakeInt.exe

Robert Jordan edited this page Oct 4, 2020 · 3 revisions

Tool: MakeInt.exe

The command line tool makeint is used to create KIF Archive (.int) archive files. It is available in many of the publicly released CatSystem2 toolsets.

Usage

CatSystem 2 Integration File creation tool
usage: makeint <outfile> <file> [file] ...

arguments:
  outfile   output file name (with extension)
  file      file name(s) or folder(s) to pack or 'packlist file'

special:
  files with ".packlist" extension are read as a newline-separated list of file names
  (wildcard is not supported for the listed file names)

  "*.packlist" files are read as a newline-separated list of file names
  (wildcard is not supported for the listed file names)

Notes

  • makeint generally requires the file extension to be included when using wildcard paths.
  • makeint may unexpectedly include path slashes in file entry names when using wildcard paths incorrectly.
  • The maximum file entry name length is 63 bytes (31 bytes with older CatSystem2 engines).

Examples

Create "config.int" with ".xml" files, "nametable.csv", and "cglist.dat"

makeint ..\master\config.int "..\system\config\*.xml" "..\system\config\nametable.csv" "..\tool\MakeCGList\cglist.dat"

Create "config.int" with "config.packlist" file

makeint ..\master\config.int config.packlist

config.packlist

// Comments are supported,
// but empty lines will end reading of the ".packlist" file
..\system\config\adv.xml
..\system\config\hist.xml
..\system\config\meswnd01.xml
..\system\config\vram.xml
..\system\config\nametable.csv
..\tool\MakeCGList\cglist.dat

See also

External links


Todo:

  • List locale requirements
  • \ path slashes required?
Clone this wiki locally