LibHashSet/example/Makefile

9 lines
136 B
Makefile

SUBDIRS := hash-set hash-map
.PHONY: all clean test $(SUBDIRS)
all clean test: $(SUBDIRS)
$(SUBDIRS):
$(MAKE) -C $@ $(MAKECMDGOALS)