
NAME = simpletest

.PHONY: $(NAME) clean

$(NAME):
	@$(MAKE) -C $@

install:
	@$(MAKE) -C $(NAME) install


clean:
	@$(MAKE) -C $(NAME) clean
