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.

40 lines
882 B

  1. # Makefile for xmm.lib
  2. #
  3. # Copyright (c) 1991, Microsoft Corporation
  4. #
  5. # History:
  6. # 13-Apr-1992 Sudeep Bharati (sudeepb)
  7. # Created.
  8. #
  9. include ..\..\make.inc
  10. doslib =..
  11. #
  12. ####################### dependencies begin here. #########################
  13. #
  14. all: $(doslib)\xmm.lib
  15. clean: cleanup all
  16. cleanup:
  17. cd $(DEST)
  18. if exist *.obj del *.obj
  19. if exist *.exe del *.exe
  20. if exist *.map del *.map
  21. if exist *.sym del *.sym
  22. if exist *.lib del *.lib
  23. cd ..\..\..
  24. $(DEST)\xmm.obj: xmm.asm \
  25. makefile.sub \
  26. $(inc)\cmacros.inc
  27. $(DEST)\xmm.lib: $(DEST)\xmm.obj
  28. if exist $(DEST)\xmm.lib del $(DEST)\xmm.lib
  29. lib16 $(DEST)\xmm+$(DEST)\xmm;
  30. $(doslib)\xmm.lib: $(DEST)\xmm.lib
  31. copy $(DEST)\xmm.lib $(doslib)