home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c221 / 7.ddi / MWHC.007 / W0 < prev    next >
Encoding:
Text File  |  1991-10-24  |  1.9 KB  |  84 lines

  1. ################################################################
  2. #
  3. #   MakeFile for Petzold examples and the MetaWare Windows 
  4. #   Application Development Kit.
  5. #
  6. #   The example program in this directory is Copyright 1990,
  7. #   Charles Petzold.  Any source code modifications required 
  8. #   to operate under the MetaWare Windows ADK have been 
  9. #   conditionalized with the __HIGHC__ macro.
  10. #
  11. #
  12. #   Note:  This makefile includes vars.make, which normally
  13. #          resides two directory levels up (..\..).  If you
  14. #          change the directory structure, or use a make 
  15. #          program that uses a different style include
  16. #          directive, you will have to modify the following 
  17. #          include statement.
  18. #
  19. ################################################################
  20.  
  21. !include ../../vars.mak
  22.  
  23. all: btnlook.exe colors1.exe environ.exe head.exe poppad1.exe
  24.  
  25. btnlook.obj: btnlook.c 
  26.     $(HC) -c -Hwin btnlook.c
  27.     
  28. btnlook.exp: btnlook.obj 
  29.     $(HC) -Hwin btnlook
  30.  
  31. btnlook.exe: btnlook.exp
  32.     copy $(MWSUP)
  33.     $(RC) mwsup.exe 
  34.     $(MWBIND) mwsup.exe btnlook.exp 
  35.     del mwsup.exe
  36.  
  37. colors1.obj: colors1.c 
  38.     $(HC) -c -Hwin colors1.c
  39.     
  40. colors1.exp: colors1.obj 
  41.     $(HC) -Hwin colors1
  42.  
  43. colors1.exe: colors1.exp 
  44.     copy $(MWSUP)
  45.     $(RC) mwsup.exe 
  46.     $(MWBIND) mwsup.exe colors1.exp 
  47.     del mwsup.exe
  48.  
  49. environ.obj: environ.c 
  50.     $(HC) -c -Hwin environ.c
  51.     
  52. environ.exp: environ.obj 
  53.     $(HC) -Hwin environ
  54.  
  55. environ.exe: environ.exp 
  56.     copy $(MWSUP)
  57.     $(RC) mwsup.exe 
  58.     $(MWBIND) mwsup.exe environ.exp 
  59.     del mwsup.exe
  60.  
  61. head.obj: head.c 
  62.     $(HC) -c -Hwin head.c
  63.     
  64. head.exp: head.obj 
  65.     $(HC) -Hwin head
  66.  
  67. head.exe: head.exp 
  68.     copy $(MWSUP)
  69.     $(RC) mwsup.exe 
  70.     $(MWBIND) mwsup.exe head.exp 
  71.     del mwsup.exe
  72.  
  73. poppad1.obj: poppad1.c 
  74.     $(HC) -c -Hwin poppad1.c
  75.     
  76. poppad1.exp: poppad1.obj 
  77.     $(HC) -Hwin poppad1
  78.  
  79. poppad1.exe: poppad1.exp
  80.     copy $(MWSUP)
  81.     $(RC) mwsup.exe 
  82.     $(MWBIND) mwsup.exe poppad1.exp 
  83.     del mwsup.exe
  84.