From 7dfef31dfd2c64d15e8744e302a59735c80d3d09 Mon Sep 17 00:00:00 2001 From: akiyamn Date: Mon, 19 Oct 2020 19:23:47 +1100 Subject: Functional task 2 --- Makefile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index a60b2f8..b378566 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,15 @@ CC = gcc -CFLAGS = -Wall +CFLAGS = -Wall -g -ALL: task1 +ALL: task1 task2 task1: task-1-29994705.c $(CC) $(CFLAGS) task-1-29994705.c -o task-1-29994705 chmod +x task-1-29994705 +task2: task-2-29994705.c + $(CC) $(CFLAGS) task-2-29994705.c -o task-2-29994705 + chmod +x task-2-29994705 + clean: - rm task-1-29994705 + rm task-1-29994705 task-2-29994705 -- cgit v1.2.3