From 0a18980aa3fc8ae08dfac7d08ffe6d962ab79ac1 Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Sat, 11 Jan 2025 17:52:09 +0100 Subject: [PATCH] Template fix --- tent1/Makefile | 7 +++---- tent1/main.cc | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/tent1/Makefile b/tent1/Makefile index 1d058e2..60bee61 100644 --- a/tent1/Makefile +++ b/tent1/Makefile @@ -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 diff --git a/tent1/main.cc b/tent1/main.cc index f9967ce..5ddd678 100644 --- a/tent1/main.cc +++ b/tent1/main.cc @@ -1,5 +1,5 @@ #include int main() { - std::cout << "Hola" << std::endl; + std::cout << "Template" << std::endl; }