* Makefile.in: Add dumper.exe target and associated mechanisms for building it.

* dumper.cc: New file.
* dumper.h: New file.
* module_info.cc: New file.
* parse_pe.cc: New file.
This commit is contained in:
Christopher Faylor
2000-08-24 19:03:12 +00:00
parent 199359f062
commit 0ad10c0f96
8 changed files with 1120 additions and 3 deletions

View File

@ -30,7 +30,7 @@ main (int argc, char **argv)
if (argc == 1)
usage ();
while (*(++argv)[0] == '-')
while (*++argv && **argv == '-')
if (strcmp (*argv + 1, "f") == 0)
force = 1;
else if (gotsig)