home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / ole / client / makefile < prev   
Encoding:
Makefile  |  1991-01-17  |  640 b   |  22 lines

  1. #----------------------------------------------------------------------------
  2. # makefile : cldemo make file
  3. #
  4. # Copyright (c) Microsoft Corporation, 1990-
  5. #----------------------------------------------------------------------------
  6.  
  7. all: cltest.exe
  8.  
  9. cltest.res: cltest.rc cldemo.h
  10.     rc -r cltest.rc
  11.  
  12. cldemo.obj: cldemo.c cldemo.h
  13.     cl -c  -AS -Gsw -Od -Zi -Zpe cldemo.c
  14.  
  15. client.obj: client.c client.h
  16.     cl -c  -AS -Gsw -Od -Zi -Zpe client.c
  17.  
  18. cltest.exe: cldemo.obj client.obj cltest.def cltest.res
  19.     link /CO /NOD /NOE cldemo client, cltest,, libw slibcew ..\..\..\dll\debug\ecd, cltest.def
  20.     rc cltest.res
  21.  
  22.