Leaked source code of windows server 2003
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.

56 lines
1.3 KiB

  1. #
  2. # rules for compiling stocklib files
  3. #
  4. $(O)\shstra.cpp: ..\shstr.cpp
  5. echo #ifdef UNICODE > $@
  6. echo #undef UNICODE >> $@
  7. echo #endif >> $@
  8. type $** >> $@
  9. $(O)\shstrw.cpp: ..\shstr.cpp
  10. echo #ifndef UNICODE > $@
  11. echo #define UNICODE >> $@
  12. echo #endif >> $@
  13. type $** >> $@
  14. $(O)\dkaa.cpp: ..\dka.cpp
  15. echo #ifdef UNICODE > $@
  16. echo #undef UNICODE >> $@
  17. echo #endif >> $@
  18. type $** >> $@
  19. $(O)\dkaw.cpp: ..\dka.cpp
  20. echo #ifndef UNICODE > $@
  21. echo #define UNICODE >> $@
  22. echo #endif >> $@
  23. type $** >> $@
  24. $(O)\nativea.cpp: ..\native.cpp
  25. echo #ifdef UNICODE > $@
  26. echo #undef UNICODE >> $@
  27. echo #endif >> $@
  28. type $** >> $@
  29. $(O)\nativew.cpp: ..\native.cpp
  30. echo #ifndef UNICODE > $@
  31. echo #define UNICODE >> $@
  32. echo #endif >> $@
  33. type $** >> $@
  34. $(O)\infotipa.cpp: ..\infotip.cpp
  35. echo #ifdef UNICODE > $@
  36. echo #undef UNICODE >> $@
  37. echo #endif >> $@
  38. type $** >> $@
  39. $(O)\infotipw.cpp: ..\infotip.cpp
  40. echo #ifndef UNICODE > $@
  41. echo #define UNICODE >> $@
  42. echo #endif >> $@
  43. type $** >> $@
  44. #
  45. # copy the generated lib to shell\lib\$O so people can include it
  46. #
  47. $(CCSHELL_DIR)\lib\$(O)\$(TARGETNAME).lib: $(O)\$(TARGETNAME).lib
  48. copy $** $@