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
doc
cov
usr
# IDE
.vscode

View File

@ -59,6 +59,7 @@ USRINC = ${USRDIR}/include
DIRS =\
${BINDIR}\
${BINDIR}/hash\
${BINDIR}/tools\
${OBJDIR}\
${OBJDIR}/hash\
${LIBDIR}\
@ -120,12 +121,12 @@ ${USRLIB}/lib${LIB}${-g}%: ${LIBDIR}/lib${LIB}${-g}%
endif
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}
${USRBIN}/%${-g}: ${BINDIR}/%${-g}
${USRBIN}/%${-g}: ${BINDIR}/tools/%${-g}
install -Dm755 $< $@
endif