top level Makefile added, so you do not need to cd src

This commit is contained in:
antirez 2010-07-06 18:54:54 +02:00
parent b056ca39f2
commit f26dde8ca9
1 changed files with 9 additions and 0 deletions

9
Makefile Normal file
View File

@ -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) $@