home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / ole / mishapes / makefile next >
Encoding:
Makefile  |  1991-01-17  |  438 b   |  19 lines

  1.  
  2. all: mishapes.exe
  3.  
  4. shapes.res: shapes.rc shapes.h
  5.     rc -r shapes.rc
  6.  
  7. shapes.obj: shapes.c shapes.h
  8.     cl -c  -AS -Gsw -Od -Zi -Zpe -W3 shapes.c
  9.  
  10.  
  11. server.obj: server.c shapes.h
  12.     cl -c  -AS -Gsw  -Od -Zi -Zpe -W3 server.c
  13.  
  14.  
  15. mishapes.exe: shapes.obj server.obj shapes.def shapes.res
  16.     link /CO /NOD /NOE shapes server,mishapes,, libw slibcew ..\..\srvr\debug\srvr.lib , shapes.def
  17.     rc shapes.res mishapes.exe
  18. 
  19.