11 lines
158 B
Makefile
11 lines
158 B
Makefile
SUBDIRS := libhashset example test
|
|
|
|
.PHONY: all clean $(SUBDIRS)
|
|
|
|
all clean: $(SUBDIRS)
|
|
|
|
example test: libhashset
|
|
|
|
$(SUBDIRS):
|
|
$(MAKE) -C $@ $(MAKECMDGOALS)
|