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.

58 lines
1.4 KiB

  1. #//+---------------------------------------------------------------------------
  2. #//
  3. #// Microsoft Windows
  4. #// Copyright (C) Microsoft Corporation, 1992 - 1994.
  5. #//
  6. #// File: make16.mak
  7. #// Contents: make16.mak for 16 bit compile of idata test
  8. #//
  9. #// History: 06-21-95 Chapman Created
  10. #//
  11. #//----------------------------------------------------------------------------
  12. NTDEBUG=1
  13. default: copy_bin
  14. TARGET = idatausr.exe
  15. TARGETTYPE = EXE
  16. OLETHUNK = $(_NTDRIVE)$(_NTROOT)\private\ole32\olethunk
  17. RCINC=$(RCINC) -i..\ole2ui -i..\ole2ui\res\usa
  18. # CDEFINES= -I..\ole2ui /GEs -I..
  19. LFLAGS=/STACK:16384
  20. CPPFILES = \
  21. .\datausr.cpp \
  22. .\perror.cpp \
  23. .\stgmedif.cpp \
  24. .\stpwatch.cpp
  25. RCFILES = .\idatausr.rc
  26. LIBS = $(LIBS)\
  27. $(OLE16)\lib\ole2.lib \
  28. $(OLE16)\lib\storage.lib \
  29. $(OLE16)\lib\loleuic.lib \
  30. $(OLE16)\lib\compobj.lib \
  31. $(OLE16)\lib\shell.lib
  32. !include make16.inc
  33. !if "$(NTDEBUG)" != "" && "$(NTDEBUG)" != "retail"
  34. LIBS = $(LIBS) $(OLETHUNK)\debnot\$(OBJDIR)\debnot.lib
  35. !endif
  36. copy_bin: all
  37. copy $(OBJDIR)\idatausr.exe $(OBJDIR)\idatau16.exe
  38. copy $(OBJDIR)\idatausr.sym $(OBJDIR)\idatau16.sym
  39. copy $(OBJDIR)\idatausr.map $(OBJDIR)\idatau16.map
  40. binplace $(OBJDIR)\idatau16.exe
  41.