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.

41 lines
995 B

  1. # Makefile for fax16 stub device driver
  2. !IFNDEF BUILDMSG
  3. BUILDMSG=
  4. !ENDIF
  5. ########## Path definition so we find 16 bit tools ##########
  6. # Also works around stupid bug in RC 3.1 that doesn't allow rcpp.err to be
  7. # in a directory that is greater than 128 chars down the path, even if
  8. # rc 3.1 is running as an OS/2 app.
  9. PATH = $(_NTBINDIR)\private\tools16;$(PATH)
  10. .SUFFIXES:
  11. .SUFFIXES: .c .obj .lst .exe .exc .exs .com .sal .cod .sil .inc .skl .cla .cl1 .ctl .asm .idx .msg
  12. MAKE =nmake
  13. asm =masm
  14. awarn =-W1
  15. aflags =-Mx -t $(awarn) $(extasw)
  16. ainc =-I. -I$(_NTBINDIR)\public\sdk\inc
  17. .asm.obj:
  18. $(asm) $(ainc) $(aflags) $*.asm;
  19. .asm.lst:
  20. $(asm) -l $(ainc) $(aflags) $*.asm;
  21. all: fax16.sys
  22. clean:
  23. if exist *.obj del *.obj
  24. if exist *.exe del *.exe
  25. if exist *.map del *.map
  26. if exist *.sym del *.sym
  27. if exist *.sys del *.sys
  28. fax16.sys: fax16.obj
  29. link16 fax16;
  30. exe2bin fax16.exe fax16.sys