home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / netds / adsi / sampapp / adscmd / makefile < prev    next >
Encoding:
Makefile  |  1997-03-18  |  658 b   |  43 lines

  1. # Copyright 1996  Microsoft Corporation
  2. #
  3. # Module Name:
  4. #
  5. #    makefile
  6. #
  7. # Abstract:
  8. #
  9. #    Active Directory Sample Code makefile
  10. #
  11. #
  12.  
  13. !include <win32.mak>
  14.  
  15. #
  16. # general targets
  17. #
  18.  
  19. all: adscmd.exe
  20.  
  21. cleansrc:
  22.     del /q ADsCmd.Exe Main.Obj Util.Obj Enum.Obj Dump.Obj
  23.  
  24. clean: cleansrc all
  25.  
  26. #
  27. # adscmd.exe
  28. #
  29.  
  30. ADsCmd.Exe: main.Obj enum.Obj dump.Obj util.Obj
  31.     $(link) $(ldebug) $(conlflags) -out:$@ $** $(olelibs) ActiveDs.lib ADsIID.lib
  32.  
  33. .cxx.Obj:
  34.   $(cc) $(cdebug) $(cflags) $(cvars) -out:$@ $*.Cxx
  35.  
  36. Main.Obj: Main.Cxx Main.Hxx
  37.  
  38. Util.Obj: Util.Cxx Main.Hxx
  39.  
  40. Enum.Obj: Enum.Cxx Main.Hxx
  41.  
  42. Dump.Obj: Dump.Cxx Main.Hxx
  43.