mirror of
https://github.com/valkey-io/valkey.git
synced 2026-05-06 13:36:47 -04:00
12 lines
151 B
Makefile
12 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
|