diff options
Diffstat (limited to 'challenge-102/gugod/rust')
| -rw-r--r-- | challenge-102/gugod/rust/.gitignore | 2 | ||||
| -rw-r--r-- | challenge-102/gugod/rust/Makefile | 10 |
2 files changed, 12 insertions, 0 deletions
diff --git a/challenge-102/gugod/rust/.gitignore b/challenge-102/gugod/rust/.gitignore new file mode 100644 index 0000000000..ac77297bfe --- /dev/null +++ b/challenge-102/gugod/rust/.gitignore @@ -0,0 +1,2 @@ +ch-1 +ch-2 diff --git a/challenge-102/gugod/rust/Makefile b/challenge-102/gugod/rust/Makefile new file mode 100644 index 0000000000..efa7c49e4e --- /dev/null +++ b/challenge-102/gugod/rust/Makefile @@ -0,0 +1,10 @@ +all: ch-1 ch-2 + +clean: + rm ch-1 ch-2 + +ch-1: ch-1.rs + rustc $< + +ch-2: ch-2.rs + rustc $< |
