learning-rust

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 8035a43ce5c77816a497a1f585d3c2c9899392bb
parent 6bd03c4cb6104c70df64cd691e8d844252553ecc
Author: bdmfegys@duck.com <bdmfegys@duck.com>
Date:   Sun, 19 May 2024 13:08:00 -0400

copy and modify C Makefile for rust

Diffstat:
AMakefile | 10++++++++++
1 file changed, 10 insertions(+), 0 deletions(-)

diff --git a/Makefile b/Makefile @@ -0,0 +1,10 @@ +# Mrgrouse's makefile! + +all: bin + +clean: + rm -f bin + +bin: main.rs + rustc main.rs -o bin +