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

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