Updated Makefiles

This commit is contained in:
2025-05-12 22:05:38 +02:00
parent e84560fa25
commit e5bad0c642
7 changed files with 108 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#include <iostream>
#include "hello_world.h"
void hello() {
std::cout << "Hello World" << std::endl;
}
// g++ -c hello_world.cpp -o hello_world.o
// ar rcs hello_world.a hello_world.o