From 00ce96d331b33baf09ddd4ca2c1c556f6f46fb7d Mon Sep 17 00:00:00 2001 From: Steven Baltakatei Sandoval Date: Fri, 14 Jul 2023 03:00:29 +0000 Subject: [PATCH 1/1] fix(src/kr/ch1/s1.1/p6):Adjust hello world example to match book --- src/kr_exercises/ch1/s1.1/p6_hello_world/.gitignore | 1 + src/kr_exercises/ch1/s1.1/p6_hello_world/Makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/kr_exercises/ch1/s1.1/p6_hello_world/.gitignore b/src/kr_exercises/ch1/s1.1/p6_hello_world/.gitignore index ce01362..73304f7 100644 --- a/src/kr_exercises/ch1/s1.1/p6_hello_world/.gitignore +++ b/src/kr_exercises/ch1/s1.1/p6_hello_world/.gitignore @@ -1 +1,2 @@ hello +a.out diff --git a/src/kr_exercises/ch1/s1.1/p6_hello_world/Makefile b/src/kr_exercises/ch1/s1.1/p6_hello_world/Makefile index 2a06090..7a479ef 100644 --- a/src/kr_exercises/ch1/s1.1/p6_hello_world/Makefile +++ b/src/kr_exercises/ch1/s1.1/p6_hello_world/Makefile @@ -1,6 +1,6 @@ CC=gcc CFLAGS=-Wall -Wextra -pedantic -OUTFILE=hello +OUTFILE=a.out SOURCE=hello.c all: $(SOURCE) -- 2.39.5