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
hiredis
Commits
b2bf7ba8
Commit
b2bf7ba8
authored
Jun 18, 2011
by
Pieter Noordhuis
Browse files
Move defaults outside if block
parent
93329c46
Changes
1
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
b2bf7ba8
...
@@ -12,24 +12,29 @@ HIREDIS_MINOR=10
...
@@ -12,24 +12,29 @@ HIREDIS_MINOR=10
# Fallback to gcc when $CC is not in $PATH.
# Fallback to gcc when $CC is not in $PATH.
CC
:=
$(
shell
sh
-c
'type
$(CC)
2>/dev/null 1>/dev/null && echo
$(CC)
|| echo gcc'
)
CC
:=
$(
shell
sh
-c
'type
$(CC)
2>/dev/null 1>/dev/null && echo
$(CC)
|| echo gcc'
)
OPTIMIZATION
?=
-O3
CFLAGS
?=
$(OPTIMIZATION)
-fPIC
-Wall
-W
-Wstrict-prototypes
-Wwrite-strings
$(ARCH)
$(PROF)
LDFLAGS
=
DEBUG
?=
-g
-ggdb
DYLIBSUFFIX
=
so
STLIBSUFFIX
=
a
DYLIB_MINOR_NAME
=
$(LIBNAME)
.
$(DYLIBSUFFIX)
.
$(HIREDIS_MAJOR)
.
$(HIREDIS_MINOR)
DYLIB_MAJOR_NAME
=
$(LIBNAME)
.
$(DYLIBSUFFIX)
.
$(HIREDIS_MAJOR)
DYLIBNAME
=
$(LIBNAME)
.
$(DYLIBSUFFIX)
DYLIB_MAKE_CMD
=
$(CC)
-shared
-Wl
,-soname,
$(DYLIB_MINOR_NAME)
-o
$(DYLIBNAME)
STLIBNAME
=
$(LIBNAME)
.
$(STLIBSUFFIX)
STLIB_MAKE_CMD
=
ar rcs
$(STLIBNAME)
INSTALL
=
cp
-a
uname_S
:=
$(
shell
sh
-c
'uname -s 2>/dev/null || echo not'
)
uname_S
:=
$(
shell
sh
-c
'uname -s 2>/dev/null || echo not'
)
OPTIMIZATION
?=
-O3
ifeq
($(uname_S),SunOS)
ifeq
($(uname_S),SunOS)
CFLAGS
?=
$(OPTIMIZATION)
-fPIC
-Wall
-W
$(ARCH)
$(PROF)
LDFLAGS
?=
-ldl
-lnsl
-lsocket
LDFLAGS
?=
-ldl
-lnsl
-lsocket
DYLIBSUFFIX
=
so
STLIBSUFFIX
=
a
DYLIB_MINOR_NAME
=
$(LIBNAME)
.
$(DYLIBSUFFIX)
.
$(HIREDIS_MAJOR)
.
$(HIREDIS_MINOR)
DYLIB_MAJOR_NAME
=
$(LIBNAME)
.
$(DYLIBSUFFIX)
.
$(HIREDIS_MAJOR)
DYLIBNAME
=
$(LIBNAME)
.
$(DYLIBSUFFIX)
DYLIB_MAKE_CMD
=
$(CC)
-G
-o
$(DYLIBNAME)
-h
$(DYLIB_MINOR_NAME)
DYLIB_MAKE_CMD
=
$(CC)
-G
-o
$(DYLIBNAME)
-h
$(DYLIB_MINOR_NAME)
STLIBNAME
=
$(LIBNAME)
.
$(STLIBSUFFIX)
STLIB_MAKE_CMD
=
ar rcs
$(STLIBNAME)
STLIB_MAKE_CMD
=
ar rcs
$(STLIBNAME)
INSTALL
=
cp
-r
INSTALL
=
cp
-r
e
lse
e
ndif
ifeq
($(uname_S),Darwin)
ifeq
($(uname_S),Darwin)
CFLAGS
?=
$(OPTIMIZATION)
-fPIC
-Wall
-W
-Wstrict-prototypes
-Wwrite-strings
$(ARCH)
$(PROF)
OBJARCH
?=
-arch
i386
-arch
x86_64
OBJARCH
?=
-arch
i386
-arch
x86_64
DYLIBSUFFIX
=
dylib
DYLIBSUFFIX
=
dylib
STLIBSUFFIX
=
a
STLIBSUFFIX
=
a
...
@@ -39,23 +44,8 @@ ifeq ($(uname_S),Darwin)
...
@@ -39,23 +44,8 @@ ifeq ($(uname_S),Darwin)
DYLIB_MAKE_CMD
=
libtool
-dynamic
-o
$(DYLIBNAME)
-install_name
$(DYLIB_MINOR_NAME)
-lm
$(DEBUG)
-
DYLIB_MAKE_CMD
=
libtool
-dynamic
-o
$(DYLIBNAME)
-install_name
$(DYLIB_MINOR_NAME)
-lm
$(DEBUG)
-
STLIBNAME
=
$(LIBNAME)
.
$(STLIBSUFFIX)
STLIBNAME
=
$(LIBNAME)
.
$(STLIBSUFFIX)
STLIB_MAKE_CMD
=
libtool
-static
-o
$(STLIBNAME)
-
STLIB_MAKE_CMD
=
libtool
-static
-o
$(STLIBNAME)
-
INSTALL
=
cp
-a
else
CFLAGS
?=
$(OPTIMIZATION)
-fPIC
-Wall
-W
-Wstrict-prototypes
-Wwrite-strings
$(ARCH)
$(PROF)
DYLIBSUFFIX
=
so
STLIBSUFFIX
=
a
DYLIB_MINOR_NAME
=
$(LIBNAME)
.
$(DYLIBSUFFIX)
.
$(HIREDIS_MAJOR)
.
$(HIREDIS_MINOR)
DYLIB_MAJOR_NAME
=
$(LIBNAME)
.
$(DYLIBSUFFIX)
.
$(HIREDIS_MAJOR)
DYLIBNAME
=
$(LIBNAME)
.
$(DYLIBSUFFIX)
DYLIB_MAKE_CMD
=
$(CC)
-shared
-Wl
,-soname,
$(DYLIB_MINOR_NAME)
-o
$(DYLIBNAME)
STLIBNAME
=
$(LIBNAME)
.
$(STLIBSUFFIX)
STLIB_MAKE_CMD
=
ar rcs
$(STLIBNAME)
INSTALL
=
cp
-a
endif
endif
endif
DEBUG
?=
-g
-ggdb
PREFIX
?=
/usr/local
PREFIX
?=
/usr/local
INCLUDE_PATH
?=
include/hiredis
INCLUDE_PATH
?=
include/hiredis
LIBRARY_PATH
?=
lib
LIBRARY_PATH
?=
lib
...
...
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