mirror of
https://github.com/redis/redis.git
synced 2026-04-21 03:01:35 -04:00
15 lines
196 B
Makefile
15 lines
196 B
Makefile
# Top level makefile, the real shit is at src/Makefile
|
|
|
|
TARGETS=32bit noopt test
|
|
|
|
all:
|
|
cd src && $(MAKE) $@
|
|
|
|
install: dummy
|
|
cd src && $(MAKE) $@
|
|
|
|
$(TARGETS) clean:
|
|
cd src && $(MAKE) $@
|
|
|
|
dummy:
|