LibHashSet/Makefile

11 lines
158 B
Makefile
Raw Normal View History

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