mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 17:19:43 -05:00
remove dependencies on other libraries
This commit is contained in:
parent
f0212c9245
commit
19d346ba71
1 changed files with 27 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue