summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2010-07-06 18:54:54 +0200
committerantirez <antirez@gmail.com>2010-07-06 18:54:54 +0200
commitf26dde8ca93e50068084cc2f5423b9244296148d (patch)
tree4013dd18848cbf000cd66eaa6b3d93bcd5bac5cc /Makefile
parentb056ca39f2d37957164c5bfc04c466b64aa6087e (diff)
downloadredis-f26dde8ca93e50068084cc2f5423b9244296148d.tar.gz
top level Makefile added, so you do not need to cd src
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 000000000..711ef6ff7
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,9 @@
+# Top level makefile, the real shit is at src/Makefile
+
+TARGETS=32bit noopt
+
+all:
+ cd src && $(MAKE) $@
+
+$(TARGETS) clean:
+ cd src && $(MAKE) $@