diff options
| author | Mohammad S Anwar <mohammad.anwar@yahoo.com> | 2021-02-08 05:44:55 +0000 |
|---|---|---|
| committer | Mohammad S Anwar <mohammad.anwar@yahoo.com> | 2021-02-08 05:44:55 +0000 |
| commit | 323110b0d053e2067a3cae6db62bc209f869bc57 (patch) | |
| tree | 2bc39115d56abc42c203e575059292df72fabdc4 /challenge-099/gugod/rust | |
| parent | 7cebc2f1b3c669c7f07abcf7dccb160626dbf921 (diff) | |
| download | perlweeklychallenge-club-323110b0d053e2067a3cae6db62bc209f869bc57.tar.gz perlweeklychallenge-club-323110b0d053e2067a3cae6db62bc209f869bc57.tar.bz2 perlweeklychallenge-club-323110b0d053e2067a3cae6db62bc209f869bc57.zip | |
- Added template for Challenge 99.
Diffstat (limited to 'challenge-099/gugod/rust')
| -rw-r--r-- | challenge-099/gugod/rust/.gitignore | 2 | ||||
| -rw-r--r-- | challenge-099/gugod/rust/Makefile | 10 |
2 files changed, 12 insertions, 0 deletions
diff --git a/challenge-099/gugod/rust/.gitignore b/challenge-099/gugod/rust/.gitignore new file mode 100644 index 0000000000..ac77297bfe --- /dev/null +++ b/challenge-099/gugod/rust/.gitignore @@ -0,0 +1,2 @@ +ch-1 +ch-2 diff --git a/challenge-099/gugod/rust/Makefile b/challenge-099/gugod/rust/Makefile new file mode 100644 index 0000000000..efa7c49e4e --- /dev/null +++ b/challenge-099/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 $< |
