home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / atl / commap / aggreg / aggregps.mak < prev    next >
Text File  |  1998-03-26  |  798b  |  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. Aggregps.dll: dlldata.obj Aggreg_p.obj Aggreg_i.obj
  11.     link /dll /out:Aggregps.dll /def:Aggregps.def \
  12.         /entry:DllMain dlldata.obj Aggreg_p.obj \
  13.         Aggreg_i.obj kernel32.lib rpcndr.lib rpcns4.lib \
  14.         rpcrt4.lib uuid.lib 
  15.  
  16. .c.obj:
  17.     cl /c /Ox /DWIN32 /DREGISTER_PROXY_DLL $<
  18.  
  19. clean:
  20.     @del Aggregps.dll
  21.     @del Aggregps.lib
  22.     @del Aggregps.exp
  23.     @del dlldata.obj
  24.     @del Aggreg_p.obj
  25.     @del Aggreg_i.obj
  26.