From e1ee835be80f86e994adfb60efb747872d3a51e9 Mon Sep 17 00:00:00 2001 From: akiyamn Date: Thu, 15 Oct 2020 13:27:58 +1100 Subject: Task 1 finished --- Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a60b2f8 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +CC = gcc +CFLAGS = -Wall + +ALL: task1 + +task1: task-1-29994705.c + $(CC) $(CFLAGS) task-1-29994705.c -o task-1-29994705 + chmod +x task-1-29994705 + +clean: + rm task-1-29994705 -- cgit v1.2.3