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
806 B

  1. # makefile.sub for append.exe
  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. target =$(DEST)\append.exe
  11. #
  12. ####################### dependencies begin here. #########################
  13. #
  14. all: $(target)
  15. binplace -o $(ALT_PROJECT_TARGET) $(target)
  16. include ..\..\cleanup.inc
  17. $(DEST)\append.ctl: $(ALT_PROJECT)\append.skl \
  18. makefile.sub \
  19. $(msg)\$(ALT_PROJECT).msg
  20. $(DEST)\append.obj: append.asm \
  21. appendp.inc \
  22. $(inc)\parse.asm \
  23. makefile.sub \
  24. $(DEST)\append.ctl
  25. $(target): $(DEST)\append.obj \
  26. makefile.sub
  27. cd $(DEST)
  28. link16 append;
  29. cd ..\..\..