view examples/Makefile @ 283:730dfd7d613d

Precendence fix
author Jamie Bullock <jamie@jamiebullock.com>
date Mon, 01 Apr 2019 21:07:13 +0100
parents 4a443da2eb65
children
line wrap: on
line source

NAME = simpletest

.PHONY: $(NAME) clean

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

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


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