From 2f008b24888b93b35c0ab1d4eff30eb04208d2ca Mon Sep 17 00:00:00 2001 From: Stefano D'Angelo Date: Tue, 6 Feb 2024 11:54:59 +0100 Subject: [PATCH] fix cmd-make Makefile --- templates/cmd-make/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/cmd-make/Makefile b/templates/cmd-make/Makefile index 6e472dc..8071c81 100644 --- a/templates/cmd-make/Makefile +++ b/templates/cmd-make/Makefile @@ -45,7 +45,7 @@ ifeq ($(CXX_OBJS),) build/${PROGRAM}: ${C_OBJS} build/obj/tinywav.o | build ${CC} $^ -o $@ ${CFLAGS_ALL} ${LDFLAGS_ALL} else -build/${PROGRAM}: ${C_OBJS} ${CXX_OBJS} | build +build/${PROGRAM}: ${C_OBJS} ${CXX_OBJS} build/obj/tinywav.o | build ${CXX} $^ -o $@ ${CFLAGS_ALL} ${CXXFLAGS_ALL} ${LDFLAGS_ALL} endif