Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
845 B

4 years ago
  1. Adding new profilers:
  2. ---------------------
  3. These are the steps involved in adding a new profiler to this tree structure.
  4. 1) Make a directory for the new profiler - use the basename of the DLL you
  5. are going to be building a profiler for.
  6. 2) Check out the Dirs file and add the new directory to the list of dirs.
  7. 3) Cd into your new directory.
  8. 4) Copy ..\constant and rename wapi.c to <modifiedbasename>.c (see next step)
  9. 5) Edit makefile.inc and sources changing all instances of @@ to the basename of
  10. the new DLL and all instances of ## to the modified basename of the new DLL (the
  11. first character is replaced with a 'z').
  12. 6) cd ..
  13. 7) Check in dirs.
  14. 8) Addfile -r the new directory
  15. 9) Run 'build'
  16. NOTE: The only files that need to be SLM'd for a given profiler directory are
  17. makefile.inc
  18. sources
  19. z*.c
  20. makefile