LibHashSet/test/Makefile

9 lines
136 B
Makefile
Raw Normal View History

2022-11-30 18:03:42 +01:00
SUBDIRS := hash-set hash-map
2022-11-30 21:04:36 +01:00
.PHONY: all clean test $(SUBDIRS)
2022-11-30 21:04:36 +01:00
all clean test: $(SUBDIRS)
2022-11-30 21:04:36 +01:00
$(SUBDIRS):
$(MAKE) -C $@ $(MAKECMDGOALS)