Template fix

This commit is contained in:
Imbus 2025-01-11 17:52:09 +01:00
parent e1d1138653
commit 0a18980aa3
2 changed files with 4 additions and 5 deletions

View file

@ -1,6 +1,5 @@
TARGET = main.elf
SRCS = main.cc
all: $(TARGET)
# Only define if needed:
# TARGET = main.elf
# SRCS = main.cc
include ../config.mk

View file

@ -1,5 +1,5 @@
#include <iostream>
int main() {
std::cout << "Hola" << std::endl;
std::cout << "Template" << std::endl;
}