From fae3baa980d4abb2405c05ddae8da7fcb0e0bd0a Mon Sep 17 00:00:00 2001 From: Marc barbier <43183491+Marc-Pierre-Barbier@users.noreply.github.com> Date: Mon, 9 Aug 2021 12:36:16 +0200 Subject: [PATCH] Update makefile --- makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/makefile b/makefile index f404f3a..3e92522 100644 --- a/makefile +++ b/makefile @@ -20,14 +20,14 @@ build : -@rm run @echo "" @echo "building :" - @cd objs && for src in ${SRCS}; do echo ${COMPILER} ${COMPILE_FLAG} ../$$src && ${COMPILER} ${COMPILE_FLAG} ../$$src; done; + @cd ${OBJDIR} && for src in ${SRCS}; do echo ${COMPILER} ${COMPILE_FLAG} ../$$src && ${COMPILER} ${COMPILE_FLAG} ../$$src; done; link: - ${COMPILER} objs/* ${LD_FLAG} run + ${COMPILER} ${OBJDIR}/* ${LD_FLAG} run winlink: -rm run.exe - ${COMPILER} objs/* ${LD_FLAG} run.exe + ${COMPILER} ${OBJDIR}/* ${LD_FLAG} run.exe winrun: WINEDEBUG=-all wine run.exe