LibHashSet/Makefile

9 lines
142 B
Makefile

SUBDIRS := libhashset example test
.PHONY: all clean test $(SUBDIRS)
all clean test: $(SUBDIRS)
$(SUBDIRS):
$(MAKE) -C $@ $(MAKECMDGOALS)