From: Steven Baltakatei Sandoval Date: Fri, 14 Jul 2023 03:00:29 +0000 (+0000) Subject: fix(src/kr/ch1/s1.1/p6):Adjust hello world example to match book X-Git-Url: https://zdv2.bktei.com/gitweb/BK-2023-05.git/commitdiff_plain/00ce96d331b33baf09ddd4ca2c1c556f6f46fb7d?ds=sidebyside fix(src/kr/ch1/s1.1/p6):Adjust hello world example to match book --- 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)