home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c221 / 7.ddi / MWHC.007 / GB < prev    next >
Encoding:
Text File  |  1991-10-24  |  1.2 KB  |  41 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: showfont.exe
  23.  
  24. showfont.res: showfont.rc showfont.h
  25.     $(RC) -r showfont.rc
  26.  
  27. showfont.obj: showfont.c showfont.h
  28.     $(HC) -c -Hwin showfont.c
  29.  
  30. cfont.obj: cfont.c showfont.h
  31.     $(HC) -c -Hwin cfont.c
  32.  
  33. showfont.exp: cfont.obj showfont.obj
  34.     $(HC) -Hwin -Hansi showfont cfont
  35.  
  36. showfont.exe: showfont.exp showfont.res
  37.     copy $(MWSUP) .
  38.     $(RC) -fe mwsup.exe showfont.res
  39.     $(MWBIND) mwsup.exe showfont.exp showfont.exe
  40.     del mwsup.exe
  41.