LibHashSet/Makefile

9 lines
142 B
Makefile
Raw Normal View History

SUBDIRS := libhashset example test
2022-11-20 18:02:12 +01:00
2022-11-30 21:04:36 +01:00
.PHONY: all clean test $(SUBDIRS)
2022-11-20 18:02:12 +01:00
2022-11-30 21:04:36 +01:00
all clean test: $(SUBDIRS)
2022-11-20 18:02:12 +01:00
2022-11-30 21:04:36 +01:00
$(SUBDIRS):
$(MAKE) -C $@ $(MAKECMDGOALS)