From 815d47a763bffbcd302818e1e33619b8314924e8 Mon Sep 17 00:00:00 2001 From: Ulrich Eckhardt Date: Tue, 27 Feb 2018 18:33:22 +0100 Subject: Fix file not found error message during compile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fdec832..4b8b901 100644 --- a/Makefile +++ b/Makefile @@ -72,7 +72,7 @@ all: $(SOFILE) i18n MAKEDEP = $(CXX) -MM -MG DEPFILE = .dependencies $(DEPFILE): Makefile - @$(MAKEDEP) $(CPPFLAGS) $(CXXFLAGS) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) > $@ + @$(MAKEDEP) $(CPPFLAGS) $(CXXFLAGS) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.cpp) > $@ -include $(DEPFILE) -- cgit v1.2.3