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

  1. MAJORCOMP=sr
  2. MINORCOMP=kernel
  3. TARGETNAME=sr
  4. TARGETPATH=obj
  5. TARGETTYPE=DRIVER
  6. DRIVERTYPE=FS
  7. USE_MAPSYM=1
  8. NT_UP=0
  9. INCLUDES=..\inc
  10. C_DEFINES=$(C_DEFINES) -D__FILELIST_STRUCTS__
  11. PRECOMPILED_INCLUDE=precomp.h
  12. SOURCES=srmsg.mc \
  13. config.c \
  14. context.c \
  15. control.c \
  16. copyfile.c \
  17. dispatch.c \
  18. event.c \
  19. fastio.c \
  20. filelist.c \
  21. filenames.c \
  22. hash.c \
  23. init.c \
  24. notify.c \
  25. lookup.c \
  26. lock.c \
  27. setInformation.c \
  28. srlog.c \
  29. srio.c \
  30. verifyBlob.c \
  31. sr.rc
  32. # turn off optimizations for debug builds. it makes debugging a real pain.
  33. !if !$(FREEBUILD)
  34. MSC_OPTIMIZATION=/Od
  35. !endif