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.

46 lines
875 B

  1. # File: D:\WACKER\comstd\makefile.t (Created: 08-Dec-1993)
  2. #
  3. # Copyright 1993 by Hilgraeve Inc. -- Monroe, MI
  4. # All rights reserved
  5. #
  6. # $Revision: 6 $
  7. # $Date: 12/27/01 11:33a $
  8. #
  9. MKMF_SRCS = .\comstd.c
  10. HDRS =
  11. EXTHDRS =
  12. SRCS =
  13. OBJS =
  14. #-------------------#
  15. RCSFILES = .\makefile.t \
  16. .\comstd.rc \
  17. .\comstd.def \
  18. $(SRCS) \
  19. $(HDRS) \
  20. #-------------------#
  21. %include ..\common.mki
  22. #-------------------#
  23. TARGETS : comstd.dll
  24. #-------------------#
  25. LFLAGS += -DLL -entry:ComStdEntry $(**,M\.exp) $(**,M\.lib)
  26. comstd.dll : $(OBJS) comstd.def comstd.res comstd.exp tdll.lib
  27. @link $(LFLAGS) $(OBJS:X) $(**,M\.res) -out:$@
  28. comstd.res : comstd.rc
  29. @rc -r $(EXTRA_RC_DEFS) /D$(BLD_VER) /DWIN32 /D$(LANG) -i..\ -fo$@ comstd.rc
  30. #-------------------#