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.

45 lines
962 B

  1. # storage Thunk DLL makefile
  2. #
  3. # Copyright (c) 1991, Microsoft Corporation
  4. #
  5. # History:
  6. #
  7. # 18-Feb-1994 BobDay Adapted from MVDM\WOW16\GDI\MAKEFILE
  8. #
  9. !IFDEF USEBUILD
  10. # If using BUILD.EXE, edit .\sources. if you want to add a new source
  11. # file to this component. This file merely indirects to the real make file
  12. # that is shared by all the components of NT OS/2.
  13. !INCLUDE $(NTMAKEENV)\makefile.def
  14. !ELSE
  15. default: copy_bin
  16. TARGET = storage.dll
  17. CFILES = \
  18. .\storage.c\
  19. .\stgdthk.c
  20. RCFILES = .\storage.rc
  21. LIBS = $(LIBS) \
  22. ..\compobj\$(OBJDIR)\compobj.lib
  23. !if "$(NTDEBUG)" != "" && "$(NTDEBUG)" != "retail" && "$(NTDEBUG)" != "ntsdnodbg"
  24. LIBS = $(LIBS) $(OLETHUNK)\debnot\$(OBJDIR)\debnot.lib
  25. !endif
  26. !include ..\makefile.inc
  27. copy_bin: all
  28. -binplace $(OBJDIR)\storage.dll
  29. -binplace $(OBJDIR)\storage.sym
  30. -binplace $(OBJDIR)\storage.map
  31. storage.obj: storage.c
  32. stgdthk.obj: stgdthk.c
  33. !ENDIF