redis_study/Makefile

12 lines
151 B
Makefile
Raw Normal View History

2020-09-05 04:01:22 +00:00
# Top level makefile, the real shit is at src/Makefile
default: all
.DEFAULT:
cd src && $(MAKE) $@
install:
cd src && $(MAKE) $@
.PHONY: install