fix(basen): non case sensitive for windows ntfs
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@ -44,6 +44,7 @@ obj
|
|||||||
lib
|
lib
|
||||||
doc
|
doc
|
||||||
cov
|
cov
|
||||||
|
usr
|
||||||
|
|
||||||
# IDE
|
# IDE
|
||||||
.vscode
|
.vscode
|
||||||
|
|||||||
7
Makefile
7
Makefile
@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user