From 7867d7c592415516a78b5da35b521ae439d1ee0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A0rius=20Mont=C3=B3n?= Date: Thu, 11 Jun 2020 09:29:06 +0200 Subject: [PATCH] fixed Makefile to work with cpp files --- tests/CPP/cout/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CPP/cout/Makefile b/tests/CPP/cout/Makefile index 25420a3..3be72e4 100644 --- a/tests/CPP/cout/Makefile +++ b/tests/CPP/cout/Makefile @@ -23,7 +23,7 @@ LIBDIR = -L. SOURCES := $(wildcard $(SRCDIR)/*.cpp) INCLUDES := $(wildcard $(INCDIR)/*.h) -OBJECTS := $(SOURCES:$(SRCDIR)/%.c=$(OBJDIR)/%.o) +OBJECTS := $(SOURCES:$(SRCDIR)/%.cpp=$(OBJDIR)/%.o) rm = rm -f