]> zdv2.bktei.com Git - BK-2023-05.git/commitdiff
fix(src/kr/ch1/s1.1/p6):Adjust hello world example to match book
authorSteven Baltakatei Sandoval <baltakatei@gmail.com>
Fri, 14 Jul 2023 03:00:29 +0000 (03:00 +0000)
committerSteven Baltakatei Sandoval <baltakatei@gmail.com>
Fri, 14 Jul 2023 03:00:29 +0000 (03:00 +0000)
src/kr_exercises/ch1/s1.1/p6_hello_world/.gitignore
src/kr_exercises/ch1/s1.1/p6_hello_world/Makefile

index ce013625030ba8dba906f756967f9e9ca394464a..73304f73770641d190ad3ad9674b026434f55f71 100644 (file)
@@ -1 +1,2 @@
 hello
+a.out
index 2a06090d927cb1639caca933d17902d77bd72090..7a479efbda77ef7cf76e861595183a5fa2234159 100644 (file)
@@ -1,6 +1,6 @@
 CC=gcc
 CFLAGS=-Wall -Wextra -pedantic
-OUTFILE=hello
+OUTFILE=a.out
 SOURCE=hello.c
 
 all: $(SOURCE)