view examples/Makefile @ 281:41b0f6b9b9a4

Merge pull request #95 from kecsap/floorfixes Don't store the floor() result in integer because it can be out-of-range
author Jamie Bullock <jamie@jamiebullock.com>
date Tue, 05 Dec 2017 14:54:57 +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