diff options
author | Matěj Cepl <mcepl@cepl.eu> | 2024-08-01 23:23:30 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@cepl.eu> | 2024-08-15 03:48:43 +0200 |
commit | 2e60fcb2815b85317ea5ee0911559a24d910d4f4 (patch) | |
tree | b58f37d23c06d918eeb5d77eeb0aedd8071df172 | |
parent | 26a64f20764b2406b797b2d94cd7a11f77c5bbb0 (diff) | |
download | tmp-2e60fcb2815b85317ea5ee0911559a24d910d4f4.tar.gz |
chore: add minimal Makefile
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4f8ad1c --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +tmp: tmp.go + go build $< + +clean: + rm -f tmp *~ |