Initial commit

This commit is contained in:
Stephan Rehfeld 2025-11-03 17:03:53 +01:00
commit 4be75edb5d
3 changed files with 15 additions and 0 deletions

5
Makefile Normal file
View File

@ -0,0 +1,5 @@
example:
cc main.c -o example
clean:
rm -f example

3
Readme.md Normal file
View File

@ -0,0 +1,3 @@
# Makefile example project
A small project to show how good make is.

7
main.c Normal file
View File

@ -0,0 +1,7 @@
#include <stdio.h>
#include <stdlib.h>
int main(void) {
puts("Hello World");
return EXIT_SUCCESS;
}