diff options
author | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2011-04-07 17:31:23 +0200 |
---|---|---|
committer | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2011-04-07 17:31:23 +0200 |
commit | d5b18b5d2878255440b9f8f73f4613190d3376b0 (patch) | |
tree | 0f124975c6d64f7d27f99314323b7373d12416d9 /Makefile | |
parent | 421eec9a4dc6bb6b6fc17b9f6a923963f7623850 (diff) |
Work with make v3.80
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -15,7 +15,8 @@ ifeq ($(uname_S),SunOS) DYLIB_MAKE_CMD?=$(CC) -G -o ${DYLIBNAME} ${OBJ} STLIBNAME?=libhiredis.a STLIB_MAKE_CMD?=ar rcs ${STLIBNAME} ${OBJ} -else ifeq ($(uname_S),Darwin) +else +ifeq ($(uname_S),Darwin) CFLAGS?=-std=c99 -pedantic $(OPTIMIZATION) -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings $(ARCH) $(PROF) CCLINK?=-lm -pthread LDFLAGS?=-L. -Wl,-rpath,. @@ -33,6 +34,8 @@ else STLIBNAME?=libhiredis.a STLIB_MAKE_CMD?=ar rcs ${STLIBNAME} ${OBJ} endif +endif + CCOPT= $(CFLAGS) $(CCLINK) DEBUG?= -g -ggdb |