windows-nt/Source/XPSP1/NT/ds/win32/credui/makefile.inc
2020-09-26 16:20:57 +08:00

34 lines
668 B
PHP

#
# build a private credui.lib that contains undocumented and
# private functions
#
$(O)\creduip.def: credui.src
@echo Creating $@ from $**
$(C_PREPROCESSOR_NAME) /DNOT_PUBLIC= $(C_PREPROCESSOR_FLAGS) $** > $@
$(O)\creduip.lib: $(O)\creduip.def $(LIBRARY_OBJS)
-lib -out:$@ @<<
$(LIBRARIAN_FLAGS)
-def:$(O)\creduip.def
$(LIBRARY_OBJS)
<<NOKEEP
#
# Build public credui.lib
#
$(O)\credui.def: credui.src
@echo Creating $@ from $**
$(C_PREPROCESSOR_NAME) /DNOT_PUBLIC=PRIVATE $(C_PREPROCESSOR_FLAGS) $** > $@
$(O)\credui.lib : $(O)\credui.def $(LIBRARY_OBJS)
-lib -out:$@ @<<
$(LIBRARIAN_FLAGS)
-def:$(O)\credui.def
$(LIBRARY_OBJS)
<<NOKEEP