mirror of
https://github.com/redis/redis.git
synced 2026-05-28 04:02:46 -04:00
Make install fixed using a dummy taget
This commit is contained in:
parent
acc0185493
commit
443d1e9efe
1 changed files with 6 additions and 1 deletions
7
Makefile
7
Makefile
|
|
@ -1,9 +1,14 @@
|
|||
# Top level makefile, the real shit is at src/Makefile
|
||||
|
||||
TARGETS=32bit noopt test install
|
||||
TARGETS=32bit noopt test
|
||||
|
||||
all:
|
||||
cd src && $(MAKE) $@
|
||||
|
||||
install: dummy
|
||||
cd src && $(MAKE) $@
|
||||
|
||||
$(TARGETS) clean:
|
||||
cd src && $(MAKE) $@
|
||||
|
||||
dummy:
|
||||
|
|
|
|||
Loading…
Reference in a new issue