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.

38 lines
1.0 KiB

  1. # THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  2. # ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  3. # THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  4. # PARTICULAR PURPOSE.
  5. #
  6. # Copyright (C) 1993 - 1999 Microsoft Corporation. All Rights Reserved.
  7. !include <Win32.Mak>
  8. all: SmpFilt.Exp SmpFilt.Dll
  9. objs = SmpFilt.Obj
  10. .Cxx.Obj:
  11. $(cc) $(cflags) $(cvars) $(cdebug) -Dtry=try /Z7 /GX /GR -DWINNT=1 -DUNICODE $*.Cxx
  12. .Cxx.pp:
  13. $(cc) $(cflags) $(cvars) $(cdebug) -Dtry=try /E /Z7 /GX /GR -DWINNT=1 -DUNICODE $*.Cxx > $*.pp
  14. SmpFilt.Exp: $(objs) SmpFilt.Def
  15. $(implib) -machine:$(CPU) -def:SmpFilt.Def $(objs) -out:SmpFilt.Lib \
  16. OldNames.Lib \
  17. Kernel32.Lib
  18. SmpFilt.Dll: $(objs) SmpFilt.Exp
  19. $(link) $(dlllflags) $(ldebug) -out:SmpFilt.Dll $(objs) SmpFilt.Exp \
  20. Uuid.Lib \
  21. User32.Lib \
  22. Kernel32.Lib \
  23. AdvApi32.Lib \
  24. Ole32.Lib
  25. clean:
  26. del *.Dll
  27. del *.Lib
  28. del *.Exp
  29. del *.Obj
  30. del *.Res