mirror of
https://github.com/redis/redis.git
synced 2026-02-19 02:30:18 -05:00
11 lines
151 B
Makefile
11 lines
151 B
Makefile
# Top level makefile, the real shit is at src/Makefile
|
|
|
|
default: all
|
|
|
|
.DEFAULT:
|
|
cd src && $(MAKE) $@
|
|
|
|
install:
|
|
cd src && $(MAKE) $@
|
|
|
|
.PHONY: install
|