src_file.hh 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /********************************************************************** <BR>
  2. This file is part of Crack dot Com's free source code release of
  3. Golgotha. <a href="http://www.crack.com/golgotha_release"> <BR> for
  4. information about compiling & licensing issues visit this URL</a>
  5. <PRE> If that doesn't help, contact Jonathan Clark at
  6. golgotha_source@usa.net (Subject should have "GOLG" in it)
  7. ***********************************************************************/
  8. #define I4 ".."
  9. #define G1 "../../golg"
  10. char *saturn_files[]= {0};
  11. char *msvc_files[]=
  12. {
  13. I4 "/main/win_main.cc",
  14. I4 "/file/win32/get_dir.cc",
  15. 0
  16. };
  17. char *linux_files[]=
  18. {
  19. I4 "/main/nrm_main.cc",
  20. I4 "/file/linux/get_dir.cc",
  21. I4 "/file/linux/linux_file.cc",
  22. 0
  23. } ;
  24. char *common_files[]=
  25. {
  26. I4 "/file/file.cc",
  27. I4 "/file/buf_file.cc",
  28. I4 "/checksum/checksum.cc",
  29. I4 "/memory/bmanage.cc",
  30. I4 "/memory/malloc.cc",
  31. I4 "/memory/growheap.cc",
  32. I4 "/error/error.cc",
  33. I4 "/error/alert.cc",
  34. I4 "/string/string.cc",
  35. I4 "/init/init.cc",
  36. I4 "/time/profile.cc",
  37. "resource_save.cc",
  38. G1 "/drive_map.cc",
  39. 0
  40. } ;
  41. char *includes[]= { I4 "/inc",
  42. I4,
  43. G1,
  44. 0 };
  45. char *exe_base="resource_save";