Files
HAL/Makefile
2021-11-02 10:17:48 +01:00

18 lines
221 B
Makefile

NAME = hal
all: $(NAME)
$(NAME):
stack build
mv `stack path --local-install-root`/bin/$(NAME)-exe $(NAME)
clean:
stack clean
fclean:
stack clean
$(RM) $(NAME)
re: fclean all
.PHONY = all clean fclean re $(NAME)