Compare commits

..

No commits in common. "with_make" and "main" have entirely different histories.

3 changed files with 0 additions and 19 deletions

View File

@ -1,10 +1,6 @@
#include <stdio.h>
extern void message();
int main()
{
printf("\nHello World!\n");
message();
}

View File

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

View File

@ -1,6 +0,0 @@
#include <stdio.h>
void message()
{
puts("Hi folk\n");
}