Source code of Windows XP (NT5)
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.

86 lines
1.5 KiB

  1. # File: D:\WACKER\makefile (Created: 23-Nov-1993)
  2. #
  3. # Copyright 1993 by Hilgraeve Inc. -- Monroe, MI
  4. # All rights reserved
  5. #
  6. # $Revision: 1.1 $
  7. # $Date: 1995/06/06 14:52:22 $
  8. #
  9. RCSFILES = \wacker\makefile \wacker\common.mki \wacker\options.lnt \
  10. \wacker\term.reg \wacker\nih\shmalloc.h \wacker\nih\smrtheap.h \
  11. \wacker\nih\sh22w32d.dll \wacker\nih\shdw32md.lib
  12. #-------------------#
  13. %include common.mki
  14. #-------------------#
  15. TARGETS : hticons.dll \
  16. hypertrm.dll \
  17. htrn_jis.dll \
  18. hypertrm.exe
  19. #-------------------#
  20. .NOINFER : makefile
  21. #-------------------#
  22. # --- Add directory of subsystem here. --- #
  23. DIRECTORIES = term tdll ext htrn_jis
  24. #-------------------#
  25. hypertrm.exe .ALWAYS:
  26. %do callmake dir=term
  27. hypertrm.dll .ALWAYS:
  28. %do callmake dir=tdll
  29. hticons.dll .ALWAYS:
  30. %do callmake dir=ext
  31. htrn_jis.dll .ALWAYS:
  32. %do callmake dir=htrn_jis
  33. #-------------------#
  34. torcs .ALWAYS:
  35. -del torcs.zip
  36. -del pkzip.rsp
  37. %foreach dir in \wacker $(DIRECTORIES)
  38. %chdir $(dir)
  39. $(MAKE) $(MFLAGS) \wacker\rcsctrl
  40. %chdir \wacker
  41. %end
  42. *pkzip -P torcs.zip @pkzip.rsp
  43. @echo ... Done ...
  44. fromrcs .ALWAYS : fromrcs.zip
  45. *pkunzip -d -o fromrcs.zip \wacker
  46. -erase fromrcs.zip
  47. -attrib -r rcsctrl
  48. -touch rcsctrl
  49. -attrib +r rcsctrl
  50. %do mkmfall
  51. mkmfall :
  52. %foreach dir in $(DIRECTORIES)
  53. %chdir $(dir)
  54. mkmf -t makefile.t
  55. %chdir \wacker
  56. %end
  57. @echo ... Done ...
  58. clean :
  59. -del $(BD)\*.obj
  60. -del $(BD)\*.lib
  61. -del $(BD)\*.dll
  62. -del $(BD)\*.exp
  63. -del $(BD)\*.exe
  64. @echo ... Done ...
  65. #-------------------#