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.

33 lines
668 B

  1. #
  2. # build a private credui.lib that contains undocumented and
  3. # private functions
  4. #
  5. $(O)\creduip.def: credui.src
  6. @echo Creating $@ from $**
  7. $(C_PREPROCESSOR_NAME) /DNOT_PUBLIC= $(C_PREPROCESSOR_FLAGS) $** > $@
  8. $(O)\creduip.lib: $(O)\creduip.def $(LIBRARY_OBJS)
  9. -lib -out:$@ @<<
  10. $(LIBRARIAN_FLAGS)
  11. -def:$(O)\creduip.def
  12. $(LIBRARY_OBJS)
  13. <<NOKEEP
  14. #
  15. # Build public credui.lib
  16. #
  17. $(O)\credui.def: credui.src
  18. @echo Creating $@ from $**
  19. $(C_PREPROCESSOR_NAME) /DNOT_PUBLIC=PRIVATE $(C_PREPROCESSOR_FLAGS) $** > $@
  20. $(O)\credui.lib : $(O)\credui.def $(LIBRARY_OBJS)
  21. -lib -out:$@ @<<
  22. $(LIBRARIAN_FLAGS)
  23. -def:$(O)\credui.def
  24. $(LIBRARY_OBJS)
  25. <<NOKEEP