BasicHello/makefile
2025-10-14 19:05:20 +02:00

10 lines
109 B
Makefile

hello.exe: hello.o message.o
gcc hello.o message.o -o hello.exe
hello.o: hello.c
message.o: message.c