10 lines
109 B
Makefile
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
|
|
|
|
|