home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c221 / 7.ddi / MWHC.007 / H4 < prev    next >
Encoding:
Text File  |  1991-10-24  |  1.8 KB  |  76 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: bounce.exe mfcreate.exe scramble.exe mfresorc.exe  
  24.  
  25. bounce.obj: bounce.c
  26.     $(HC) -c -Hwin bounce.c
  27.  
  28. bounce.exp: bounce.obj
  29.     $(HC) -Hwin bounce
  30.  
  31. bounce.exe: bounce.exp
  32.     copy $(MWSUP)
  33.     $(RC) mwsup.exe
  34.     $(MWBIND) mwsup.exe bounce.exp
  35.     del mwsup.exe
  36.  
  37. mfcreate.obj: mfcreate.c
  38.     $(HC) -c -Hwin mfcreate.c
  39.  
  40. mfcreate.exp: mfcreate.obj
  41.     $(HC) -Hwin mfcreate
  42.  
  43. mfcreate.exe: mfcreate.exp
  44.     copy $(MWSUP)
  45.     $(RC) mwsup.exe
  46.     $(MWBIND) mwsup.exe mfcreate.exp
  47.     del mwsup.exe
  48.  
  49. scramble.obj: scramble.c
  50.     $(HC) -c -Hwin scramble.c
  51.  
  52. scramble.exp: scramble.obj
  53.     $(HC) -Hwin scramble
  54.  
  55. scramble.exe: scramble.exp
  56.     copy $(MWSUP)
  57.     $(RC) mwsup.exe
  58.     $(MWBIND) mwsup.exe scramble.exp
  59.     del mwsup.exe
  60.  
  61. mfresorc.obj: mfresorc.c
  62.     $(HC) -c -Hwin mfresorc.c
  63.  
  64. mfresorc.exp: mfresorc.obj
  65.     $(HC) -Hwin mfresorc
  66.  
  67. mfresorc.res: mfresorc.rc
  68.     $(RC) -r mfresorc.rc
  69.  
  70. mfresorc.exe: mfresorc.exp mfresorc.res
  71.     copy $(MWSUP)
  72.     $(RC) -fe mwsup.exe mfresorc.res
  73.     $(MWBIND) mwsup.exe mfresorc.exp
  74.     del mwsup.exe
  75.  
  76.