From a9f6025f4802f918454f470218895c829adedfa4 Mon Sep 17 00:00:00 2001 From: Arne Beer Date: Sat, 18 Oct 2014 17:21:09 +0200 Subject: [PATCH] Makefile added --- BGJ08/Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 BGJ08/Makefile diff --git a/BGJ08/Makefile b/BGJ08/Makefile new file mode 100644 index 0000000..cc9cd7b --- /dev/null +++ b/BGJ08/Makefile @@ -0,0 +1,10 @@ +.PHONY: default build run + +default: build run + +build: + cargo build + +run: + cargo run +