diff --git a/makefile b/makefile new file mode 100644 index 0000000..0377e93 --- /dev/null +++ b/makefile @@ -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 + +