Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
954 B

  1. # THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  2. # ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED
  3. # TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  4. # PARTICULAR PURPOSE.
  5. #
  6. # Copyright (C) 1999. Microsoft Corporation. All rights reserved.
  7. !include <win32.mak>
  8. !if "$(CPU)" != "IA64"
  9. PROJ1 = dbh
  10. all: $(OUTDIR) $(OUTDIR)\$(PROJ1).exe
  11. #----- If OUTDIR does not exist, then create directory
  12. $(OUTDIR) :
  13. if not exist "$(OUTDIR)/$(NULL)" mkdir $(OUTDIR)
  14. PROJ1_OBJS = $(OUTDIR)\dbh.obj
  15. .cpp{$(OUTDIR)}.obj:
  16. $(cc) $(cdebug) $(cflags) $(cvars) /Fo"$(OUTDIR)\\" /Fd"$(OUTDIR)\\" $**
  17. $(OUTDIR)\$(PROJ1).exe: $(PROJ1_OBJS)
  18. $(link) $(ldebug) $(conlflags)\
  19. $(PROJ1_OBJS) \
  20. -out:$(OUTDIR)\$(PROJ1).exe \
  21. $(conlibs) dbghelp.lib
  22. clean:
  23. $(CLEANUP)
  24. !else
  25. !message Sorry, currently building this sample for 64bit is not supported.
  26. !endif