First, run a
  ./configure
and then a
  make
for compilation only and/or a
  make install
for compilation and installation (the last requires beeing root) of the binaries
and the manual pages.

Before running make you might wish to edit Makefile and general.h:
* Makefile:
	INSTALLDIR_BIN_DUMP
	INSTALLDIR_MAN_DUMP
	INSTALLDIR_BIN_UNDUMP
	INSTALLDIR_MAN_UNDUMP

* general.h:
	HAVE_LONGLONG		(64-bit integers)
	HAVE_LITTLE_ENDIAN	(less significant byte first)
The default settings are currently:
Linux:	#define HAVE_LONGLONG, #define HAVE_LITTLE_ENDIAN
IRIX:	#undef  HAVE_LONGLONG, #undef  HAVE_LITTLE_ENDIAN
AIX:	#define HAVE_LONGLONG, #undef  HAVE_LITTLE_ENDIAN
If your compiler should stumble on loff_t or the offsets written by hxd
look wired, undefine HAVE_LONGLONG and HAVE_LITTLE_ENDIAN by hand,
respectively.
