fix(basen): non case sensitive for windows ntfs

This commit is contained in:
2024-10-26 20:40:48 +03:00
parent 82a9243e2b
commit f7cdbf4882
3 changed files with 5 additions and 3 deletions

1
.gitignore vendored
View File

@ -44,6 +44,7 @@ obj
lib lib
doc doc
cov cov
usr
# IDE # IDE
.vscode .vscode

View File

@ -59,6 +59,7 @@ USRINC = ${USRDIR}/include
DIRS =\ DIRS =\
${BINDIR}\ ${BINDIR}\
${BINDIR}/hash\ ${BINDIR}/hash\
${BINDIR}/tools\
${OBJDIR}\ ${OBJDIR}\
${OBJDIR}/hash\ ${OBJDIR}/hash\
${LIBDIR}\ ${LIBDIR}\
@ -120,12 +121,12 @@ ${USRLIB}/lib${LIB}${-g}%: ${LIBDIR}/lib${LIB}${-g}%
endif endif
ifneq (${TOOLS},) ifneq (${TOOLS},)
tools: library ${DIRS} ${patsubst %, ${BINDIR}/%${-g}, ${TOOLS}} tools: library ${DIRS} ${patsubst %, ${BINDIR}/tools/%${-g}, ${TOOLS}}
${BINDIR}/%${-g}: ${SRCDIR}/%.cpp ${patsubst %, ${OBJDIR}/%${-g}.o, ${OBJS}} ${BINDIR}/tools/%${-g}: ${SRCDIR}/tools/%.cpp ${patsubst %, ${OBJDIR}/%${-g}.o, ${OBJS}}
${CC} -o $@ $< -I${INCDIR} -L${LIBDIR} ${-l} ${-lLIB} ${CFLAGS} ${CC} -o $@ $< -I${INCDIR} -L${LIBDIR} ${-l} ${-lLIB} ${CFLAGS}
${USRBIN}/%${-g}: ${BINDIR}/%${-g} ${USRBIN}/%${-g}: ${BINDIR}/tools/%${-g}
install -Dm755 $< $@ install -Dm755 $< $@
endif endif