view examples/Makefile @ 264:ecd6f2cf1346

Initial unit testing setup with an example test
author Jamie Bullock <jamie@jamiebullock.com>
date Mon, 10 Nov 2014 20:29:19 +0000
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