From 92ba4bac7774265e54ae6f3ccafce60679c924f7 Mon Sep 17 00:00:00 2001 From: snsd0805 Date: Wed, 24 May 2023 17:40:21 +0800 Subject: [PATCH] feat: add Makefile --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..86972c2 --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +all: a.out +a.out: main.c + gcc main.c -lm +run: + ./a.out