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

  1. ################################################################
  2. #
  3. #   MakeFile for Microsoft SDK examples and the MetaWare
  4. #   Windows Application Development Kit.
  5. #
  6. #   The example program in this directory is Copyright 1990,
  7. #   Microsoft Corporation, and has been modified by MetaWare
  8. #   to operate under the MetaWare Windows ADK.
  9. #
  10. #
  11. #   Note:  This makefile includes vars.mak, which normally
  12. #          resides two directory levels up (..\..).  If you
  13. #          change the directory structure, or use a make 
  14. #          program that uses a different style include
  15. #          directive, you will have to modify the following 
  16. #          include statement.
  17. #
  18. ################################################################
  19.  
  20. !include ../../vars.mak
  21.  
  22. all: clock.exe
  23.  
  24. clockdat.obj: clockdat.asm
  25.     masm clockdat;
  26.  
  27. clockdat.bin: clockdat.asm
  28.     link clockdat;
  29.     exe2bin clockdat
  30.     del clockdat.exe
  31.  
  32. clock.res: clock.rc clock.ico clock.h clockdat.bin clock.dlg
  33.     $(RC) -r clock.rc
  34.  
  35. clock.obj: clock.c clock.h
  36.     $(HC) -c -Hwin clock.c 
  37.  
  38. clock.exp: clock.obj
  39.     $(HC) -Hwin clock.obj
  40.  
  41. clock.exe: clock.exp clock.res
  42.     copy $(MWSUP) .
  43.     $(RC) -fe mwsup.exe clock.res
  44.     $(MWBIND) mwsup.exe clock.exp clock.exe
  45.     del mwsup.exe
  46.