From 5ec3b8cdeb6f387143ddcbf12bc9522dbfc3af8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Ortega=20Froysa?= Date: Tue, 10 Jun 2025 11:32:40 +0200 Subject: [PATCH] Makefile: Use CXX variable. --- Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Makefile b/Makefile index f16a5b5..a1a9c76 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,9 @@ -CPP=g++ - OBJS := 00-const-vars/const.o 00-const-vars/no-const.o 01-inline-functions/inline.o 01-inline-functions/no-inline.o 02-pass-by-ref/ref.o 02-pass-by-ref/no-ref.o all: $(OBJS) %.o: %.cpp - $(CPP) $< -o $@ -c + $(CXX) $< -o $@ -c .PHONY: clean all