home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / atl / commap / commapps.mak < prev    next >
Text File  |  1998-03-26  |  796b  |  27 lines

  1. # This is a part of the Active Template Library.
  2. # Copyright (C) 1996-1998 Microsoft Corporation
  3. # All rights reserved.
  4. # This source code is only intended as a supplement to the
  5. # Active Template Library Reference and related
  6. # electronic documentation provided with the library.
  7. # See these sources for detailed information regarding the
  8. # Active Template Library product.
  9.  
  10. COMMapps.dll: dlldata.obj COMMap_p.obj COMMap_i.obj
  11.     link /dll /out:COMMapps.dll /def:COMMapps.def /entry:DllMain \
  12.         dlldata.obj COMMap_p.obj COMMap_i.obj kernel32.lib \
  13.         rpcndr.lib rpcns4.lib rpcrt4.lib uuid.lib 
  14.  
  15. .c.obj:
  16.     cl /c /Ox /DWIN32 /DREGISTER_PROXY_DLL $<
  17.  
  18. clean:
  19.     @del COMMapps.dll
  20.     @del COMMapps.lib
  21.     @del COMMapps.exp
  22.     @del dlldata.obj
  23.     @del COMMap_p.obj
  24.     @del COMMap_i.obj
  25.  
  26.