Source code of Windows XP (NT5)
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.

56 lines
971 B

  1. !IF 0
  2. Copyright (c) 1989 Microsoft Corporation
  3. Module Name:
  4. makefile
  5. Abstract:
  6. This file controls the creation of the utilities
  7. Author:
  8. Dave Hastings (daveh) 25-Apr-1991
  9. !ENDIF
  10. ########## Path definition so we find 16 bit tools ##########
  11. # Also works around stupid bug in RC 3.1 that doesn't allow rcpp.err to be
  12. # in a directory that is greater than 128 chars down the path, even if
  13. # rc 3.1 is running as an OS/2 app.
  14. PATH = $(_NTBINDIR)\private\tools16;$(PATH)
  15. .SUFFIXES:
  16. .SUFFIXES: .asm .inc .obj .lst .exe .com .map .sym
  17. MASM = masm
  18. AINC = -I. -I..\inc -I..\..\inc
  19. AFLAGS = -Ml
  20. LFLAGS =
  21. LIB =
  22. RELOC = reloc
  23. # rules
  24. .asm.obj :
  25. $(MASM) $(AFLAGS) $(AINC) $*.asm, $*.obj;
  26. .asm.lst :
  27. $(MASM) $(AFLAGS) $(AINC) -l $*.asm, $*.obj;
  28. .obj.exe :
  29. link16 $(LFLAGS) $*,,,$(LIB);
  30. .exe.com :
  31. $(RELOC) $*.exe $*.com
  32. # dependencies
  33. all: quit.com
  34. quit.com : quit.exe
  35. quit.obj : quit.asm ..\..\inc\bop.inc