makefile added

This commit is contained in:
Andre 2025-10-14 19:05:20 +02:00
parent 7feb3a7922
commit 684a21d23f

9
makefile Normal file
View File

@ -0,0 +1,9 @@
hello.exe: hello.o message.o
gcc hello.o message.o -o hello.exe
hello.o: hello.c
message.o: message.c