remove dependencies on other libraries

This commit is contained in:
Gary Williams 1999-06-18 21:27:20 +00:00
parent f0212c9245
commit 19d346ba71

View file

@ -196,13 +196,25 @@ SOURCE=.\slapdmsg.mc
!IF "$(CFG)" == "liblutil - Win32 Release"
# Begin Custom Build - Building slapd message file
IntDir=.\Release\liblutil
InputPath=.\slapdmsg.mc
"slapdmsg.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
mkdir $(IntDir)
mc -v slapdmsg.mc -r $(IntDir)
rc /v /r $(IntDir)\slapdmsg.rc
# End Custom Build
!ELSEIF "$(CFG)" == "liblutil - Win32 Debug"
# Begin Custom Build
# Begin Custom Build - Building slapd message file
IntDir=.\Debug\liblutil
InputPath=.\slapdmsg.mc
"slapdmsg.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
mkdir $(IntDir)
mc -v slapdmsg.mc -r $(IntDir)
rc /v /r $(IntDir)\slapdmsg.rc
@ -210,18 +222,30 @@ InputPath=.\slapdmsg.mc
!ELSEIF "$(CFG)" == "liblutil - Win32 Single Debug"
# Begin Custom Build
# Begin Custom Build - Building slapd message file
IntDir=.\SDebug\liblutil
InputPath=.\slapdmsg.mc
"slapdmsg.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
mkdir $(IntDir)
mc -v slapdmsg.mc -r $(IntDir)
rc /v /r $(IntDir)slapdmsg.rc
rc /v /r $(IntDir)\slapdmsg.rc
# End Custom Build
!ELSEIF "$(CFG)" == "liblutil - Win32 Single Release"
# Begin Custom Build - Building slapd message file
IntDir=.\SRelease\liblutil
InputPath=.\slapdmsg.mc
"slapdmsg.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
mkdir $(IntDir)
mc -v slapdmsg.mc -r $(IntDir)
rc /v /r $(IntDir)\slapdmsg.rc
# End Custom Build
!ENDIF
# End Source File