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

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