summaryrefslogtreecommitdiff
path: root/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Fix `install` target on OSX (see #495)Pieter Noordhuis2012-05-151-0/+4
|
* top level Makefile now just a proxy. Doing make clean inside src now does a ↵antirez2011-07-131-20/+2
| | | | full clean including deps, not just Redis source. Thanks to Pieter for the top level Makefile proxy trick.
* master branch merged into scripting.antirez2011-07-121-0/+1
|\
| * Ingore jemalloc make distclean error in Makefile, caused by make clean ↵antirez2011-07-051-1/+1
| | | | | | | | against a tree that never compiled jemalloc.
* | unstable merge conflicts resolvedantirez2011-06-251-0/+1
|\ \ | |/
| * Makefile modified to build with jemallocantirez2011-06-201-0/+1
| |
* | makefile adapted to link against lua lib and to pass the 32bit flag to Lua ↵antirez2011-05-251-0/+1
|/ | | | building system
* Merge remote branch 'visionmedia/cli-help' into cli-helpPieter Noordhuis2010-11-261-0/+3
|\
| * Added redis-cli interactive help supportTj Holowaychuk2010-11-161-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | updated via commands.json in redis-doc repo. Currently use `make src/help.h` to re-generate. The following are valid from the REPL: help help [command] help [group] help groups ex: help sort help hash
* | Only cascade clean target to depsPieter Noordhuis2010-11-051-1/+4
| |
* | top level make clean also clean hiredis and linoise (deps)antirez2010-11-031-0/+2
|/
* Make install fixed using a dummy tagetantirez2010-07-061-1/+6
|
* make install target, finally ;)antirez2010-07-061-1/+1
|
* top level Makefile added, so you do not need to cd srcantirez2010-07-061-0/+9
|
* redis.c split into many different C files.antirez2010-07-011-114/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | networking related stuff moved into networking.c moved more code more work on layout of source code SDS instantaneuos memory saving. By Pieter and Salvatore at VMware ;) cleanly compiling again after the first split, now splitting it in more C files moving more things around... work in progress split replication code splitting more Sets split Hash split replication split even more splitting more splitting minor change
* Fixed deps in makefile and mkreleasehdr.sh script to really take advantage ↵antirez2010-06-131-2/+1
| | | | of the new trick to avoid recompilation of redis.c on git sha1 or dirty status change
* hopefully faster recompiling with a trickantirez2010-06-131-5/+6
|
* merge antirez/smallkeysPieter Noordhuis2010-06-041-1/+1
|\
| * pass tags to filter and match via argumentsPieter Noordhuis2010-06-021-1/+1
| |
* | update Makefile to include ziplist.oPieter Noordhuis2010-06-031-1/+2
|/
* changed the message in the Makefile with the new command like to run the ↵antirez2010-05-281-3/+1
| | | | test suite
* buliding of release.h moved into an external script. Avoided recompialtion ↵antirez2010-05-181-8/+2
| | | | of redis.c if git sha1 is the same as the previous one
* create release.h in make process and add this information to INFO listingPieter Noordhuis2010-05-171-1/+8
|
* minor fixes to the new test suite, html doc updatedantirez2010-05-141-3/+2
|
* update makefile to use the new test suitePieter Noordhuis2010-05-141-4/+2
|
* DEBUG DIGEST implemented, in order to improve the ability to test ↵antirez2010-05-141-2/+2
| | | | persistence and replication consistency
* makefile deps updatedantirez2010-05-131-1/+5
|
* tool to check if AOF is validPieter Noordhuis2010-05-051-2/+7
|
* running the test using tcl8.5 directly instead of tclsh that too often it's ↵antirez2010-04-191-1/+1
| | | | a symlink to 8.4
* ability to select port/host from make testantirez2010-04-151-1/+3
|
* Incrementally rehahsing hash table! Thanks to Derek Collison and Pieter ↵antirez2010-04-151-1/+1
| | | | Noordhuis for feedbacks/help
* Use linenoise for line editing on redis-cli.Michel Martens2010-03-231-2/+5
|
* Added Authentication to redis-cli.c using -a switchroot2010-03-171-1/+1
| | | | | Update usage fixed Makefile to delete redis-check-dump during make clean
* utility to check rdb files for unprocessable opcodesPieter Noordhuis2010-03-131-1/+6
|
* zipmaps functions to get, iterate, test for existence. Initial works for ↵antirez2010-03-051-2/+3
| | | | Hash data type
* Fixed 32bit make target to work on Linux out of the boxantirez2010-02-221-1/+4
|
* commercial tools stuff removed from the Redis makefile. cotools are now ↵antirez2010-01-191-8/+1
| | | | migrated into a different repos
* removed a bug in the function to cancel an I/O jobantirez2010-01-191-4/+14
|
* a few more stuff in INFO about VM. Test #11 changed a bit in order to be ↵antirez2010-01-121-2/+6
| | | | less lame
* More threaded I/O VM work + Redis init scriptantirez2010-01-111-5/+3
|
* non-blocking VM data structures, just a startantirez2010-01-091-1/+3
|
* a few more tests and ability to run a specific test in test-redis.tclantirez2009-12-141-1/+4
|
* epoll module for ae.c implemented. Some more testing neededantirez2009-11-231-1/+1
|
* ae.c now supports multiple polling API modules, even if only ae_select.c is ↵antirez2009-11-231-2/+4
| | | | implemented currently. Also adding and removing an event is now O(1).
* Tcl script, make target, and redis.c changes to build the static symbol ↵antirez2009-11-101-0/+3
| | | | table automagically
* masterauth option merged, thanks to Anthony Lauzonantirez2009-11-041-2/+8
|
* Fix for 'make 32bit'antirez2009-10-271-1/+1
|
* double serialization routines implementedantirez2009-10-261-1/+2
|
* Merged Solaris patches provided by Alan Harderantirez2009-10-261-3/+9
|
* more work on ZSETs and a new make target called 32bit to build i386 binaries ↵antirez2009-10-231-1/+4
| | | | on mac os x leopard