Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
a4e48b41
Commit
a4e48b41
authored
Nov 21, 2010
by
Pieter Noordhuis
Browse files
Don't hardcode make to "make"
parent
bd70a5f5
Changes
2
Hide whitespace changes
Inline
Side-by-side
deps/hiredis/Makefile
View file @
a4e48b41
...
@@ -90,13 +90,13 @@ install: ${DYLIBNAME} ${STLIBNAME}
...
@@ -90,13 +90,13 @@ install: ${DYLIBNAME} ${STLIBNAME}
@
echo
""
@
echo
""
@
echo
"WARNING: if it fails under Linux you probably need to install libc6-dev-i386"
@
echo
"WARNING: if it fails under Linux you probably need to install libc6-dev-i386"
@
echo
""
@
echo
""
make
ARCH
=
"-m32"
$(MAKE)
ARCH
=
"-m32"
gprof
:
gprof
:
make
PROF
=
"-pg"
$(MAKE)
PROF
=
"-pg"
gcov
:
gcov
:
make
PROF
=
"-fprofile-arcs -ftest-coverage"
$(MAKE)
PROF
=
"-fprofile-arcs -ftest-coverage"
noopt
:
noopt
:
make
OPTIMIZATION
=
""
$(MAKE)
OPTIMIZATION
=
""
src/Makefile
View file @
a4e48b41
...
@@ -109,15 +109,15 @@ redis-server: $(OBJ)
...
@@ -109,15 +109,15 @@ redis-server: $(OBJ)
@
echo
""
@
echo
""
redis-benchmark
:
$(BENCHOBJ)
redis-benchmark
:
$(BENCHOBJ)
cd
../deps/hiredis
&&
make
static
cd
../deps/hiredis
&&
$(MAKE)
static
$(CC)
-o
$(BENCHPRGNAME)
$(CCOPT)
$(DEBUG)
$(BENCHOBJ)
../deps/hiredis/libhiredis.a
$(CC)
-o
$(BENCHPRGNAME)
$(CCOPT)
$(DEBUG)
$(BENCHOBJ)
../deps/hiredis/libhiredis.a
redis-benchmark.o
:
redis-benchmark.o
:
$(CC)
-c
$(CFLAGS)
-I
../deps/hiredis
$(DEBUG)
$(COMPILE_TIME)
$<
$(CC)
-c
$(CFLAGS)
-I
../deps/hiredis
$(DEBUG)
$(COMPILE_TIME)
$<
redis-cli
:
$(CLIOBJ)
redis-cli
:
$(CLIOBJ)
cd
../deps/hiredis
&&
make
static
ARCH
=
"
$(ARCH)
"
cd
../deps/hiredis
&&
$(MAKE)
static
ARCH
=
"
$(ARCH)
"
cd
../deps/linenoise
&&
make
ARCH
=
"
$(ARCH)
"
cd
../deps/linenoise
&&
$(MAKE)
ARCH
=
"
$(ARCH)
"
$(CC)
-o
$(CLIPRGNAME)
$(CCOPT)
$(DEBUG)
$(CLIOBJ)
../deps/hiredis/libhiredis.a ../deps/linenoise/linenoise.o
$(CC)
-o
$(CLIPRGNAME)
$(CCOPT)
$(DEBUG)
$(CLIOBJ)
../deps/hiredis/libhiredis.a ../deps/linenoise/linenoise.o
redis-cli.o
:
redis-cli.o
:
...
@@ -134,8 +134,8 @@ redis-check-aof: $(CHECKAOFOBJ)
...
@@ -134,8 +134,8 @@ redis-check-aof: $(CHECKAOFOBJ)
clean
:
clean
:
rm
-rf
$(PRGNAME)
$(BENCHPRGNAME)
$(CLIPRGNAME)
$(CHECKDUMPPRGNAME)
$(CHECKAOFPRGNAME)
*
.o
*
.gcda
*
.gcno
*
.gcov
rm
-rf
$(PRGNAME)
$(BENCHPRGNAME)
$(CLIPRGNAME)
$(CHECKDUMPPRGNAME)
$(CHECKAOFPRGNAME)
*
.o
*
.gcda
*
.gcno
*
.gcov
cd
../deps/hiredis
&&
make
clean
cd
../deps/hiredis
&&
$(MAKE)
clean
cd
../deps/linenoise
&&
make
clean
cd
../deps/linenoise
&&
$(MAKE)
clean
dep
:
dep
:
$(CC)
-MM
*
.c
$(CC)
-MM
*
.c
...
@@ -153,19 +153,19 @@ log:
...
@@ -153,19 +153,19 @@ log:
@
echo
""
@
echo
""
@
echo
"WARNING: if it fails under Linux you probably need to install libc6-dev-i386"
@
echo
"WARNING: if it fails under Linux you probably need to install libc6-dev-i386"
@
echo
""
@
echo
""
make
ARCH
=
"-m32"
$(MAKE)
ARCH
=
"-m32"
gprof
:
gprof
:
make
PROF
=
"-pg"
$(MAKE)
PROF
=
"-pg"
gcov
:
gcov
:
make
PROF
=
"-fprofile-arcs -ftest-coverage"
$(MAKE)
PROF
=
"-fprofile-arcs -ftest-coverage"
noopt
:
noopt
:
make
OPTIMIZATION
=
""
$(MAKE)
OPTIMIZATION
=
""
32bitgprof
:
32bitgprof
:
make
PROF
=
"-pg"
ARCH
=
"-arch i386"
$(MAKE)
PROF
=
"-pg"
ARCH
=
"-arch i386"
install
:
all
install
:
all
mkdir
-p
$(INSTALL_BIN)
mkdir
-p
$(INSTALL_BIN)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment