summaryrefslogtreecommitdiff
path: root/Makefile
AgeCommit message (Collapse)Author
2011-06-19Fix gprof targetPieter Noordhuis
2011-06-19Coverage reportPieter Noordhuis
2011-06-19Use CFLAGS and LDFLAGS instead of custom variablesPieter Noordhuis
2011-06-19Append to REAL_LDFLAGS so LDFLAGS can be overridden by the userPieter Noordhuis
2011-06-19Pass LDFLAGS to linker when creating dynamic libraryPieter Noordhuis
2011-06-19Remove unnecessary overridesPieter Noordhuis
2011-06-19Don't pass CFLAGS when linkingPieter Noordhuis
2011-06-18Add phony targetPieter Noordhuis
2011-06-18Remove unused variablesPieter Noordhuis
The variable OBJARCH was used to compile objects for both 32-bit and 64-bit architectures. It can be removed because this is only relevant for the Ruby wrapper for hiredis. This wrapper should put these flags in CFLAGS to get the same effect.
2011-06-18Swap argumentsPieter Noordhuis
2011-06-18Merge DEBUG in REAL_CFLAGSPieter Noordhuis
2011-06-18Allow *extra* CFLAGS/LDFLAGS via argumentsPieter Noordhuis
2011-06-18Move redirection aroundPieter Noordhuis
2011-06-18Disallow overriding CFLAGS and LDFLAGSPieter Noordhuis
2011-06-18Move path variables closer to install targetPieter Noordhuis
2011-06-18Move defaults outside if blockPieter Noordhuis
2011-06-18Library variables may not be overriddenPieter Noordhuis
2011-06-18Merge CCLINK with LDFLAGSPieter Noordhuis
2011-06-18Remove private feature macros for Solaris from compiler flagsPieter Noordhuis
2011-06-18Add myself to Makefile licensePieter Noordhuis
2011-06-18Remove unused libraries from link flagsPieter Noordhuis
2011-06-18Fallback to gcc when $CC is not in $PATHPieter Noordhuis
2011-05-29Exit with a non-zero status when tests failedPieter Noordhuis
2011-05-22Test against unix socket connection in make check targetPieter Noordhuis
2011-05-22Add "make check" target (useful for automated tests).Piotr Sikora
While there, add "-p" option to "hiredis-test", so that we could run tests without interrupting Redis instance running on the default port.
2011-04-22cp on Solaris doesn't have -aPieter Noordhuis
2011-04-22Add versioned symlinks for install targetPieter Noordhuis
2011-04-22Solaris needs the static lib as last argumentPieter Noordhuis
2011-04-22Move OBJ argumentPieter Noordhuis
2011-04-22Braces -> parenthesesPieter Noordhuis
2011-04-22Separate basename and suffix for library filenamePieter Noordhuis
2011-04-22Configurable paths for install targetPieter Noordhuis
2011-04-21Remove rpath from linker flags; link artifacts staticallyPieter Noordhuis
2011-04-21Remove util.h from MakefilePieter Noordhuis
2011-04-21Only use C99 for compiling hiredis itselfPieter Noordhuis
The libevent example cannot be compiled when -std=c99 is passed. It is not necessary that the adapters nor the examples follow this standard, as long as the code for hiredis itself is compliant.
2011-04-21Include fmacros.h to make sure strerror_p is defined on LinuxPieter Noordhuis
2011-04-21Recompile net.c when hiredis.h changesPieter Noordhuis
2011-04-07Work with make v3.80Pieter Noordhuis
2011-01-27Avoid warnings with -Wstrict-prototypesPieter Noordhuis
2011-01-14Make dictionary functions static and include the .c filePieter Noordhuis
2010-12-31Replace zmalloc with regular mallocPieter Noordhuis
2010-12-16Forgot to add -L. to remaining LDFLAGSPieter Noordhuis
2010-12-16Fix building shared library on SolarisPieter Noordhuis
2010-12-16Use generic $(MAKE) in MakefilePieter Noordhuis
2010-12-02Use more aggressive optimizationPieter Noordhuis
2010-12-02WhitespacePieter Noordhuis
2010-12-01Add adapter for the Redis-bundled ae event libraryPieter Noordhuis
2010-12-01Don't compile object files for examples twicePieter Noordhuis
2010-11-02Update examplesPieter Noordhuis
2010-11-02Move anet.{c,h} to net.{c,h}Pieter Noordhuis