From 1e32675e2eead3e66d5fd741a07ed50cf3984e77 Mon Sep 17 00:00:00 2001 From: Lucas Cordiviola Date: Thu, 28 Oct 2021 02:47:08 -0300 Subject: [PATCH] update makefile --- .gitignore | 6 +++++- vst-scheduler/makefile | 5 +++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 04c7242..1812e0c 100644 --- a/.gitignore +++ b/.gitignore @@ -6,4 +6,8 @@ vstsdk2.4 # binaries -*.dll \ No newline at end of file +*.dll + +# files + +build/Release64/pdvstdebug.txt \ No newline at end of file diff --git a/vst-scheduler/makefile b/vst-scheduler/makefile index d1e74ad..a03b138 100644 --- a/vst-scheduler/makefile +++ b/vst-scheduler/makefile @@ -3,7 +3,7 @@ # make PDDIR= # or you can specify it below: -PDDIR= +PDDIR=../build/Release64/.pd/ WINARCH := $(shell $(CC) -dumpmachine) @@ -17,4 +17,5 @@ ALL: vstschedlib.c gcc -Wall -I$(PDDIR)src -I../vst-template vstschedlib.c -static-libgcc \ -shared -L$(PDDIR)bin -l:pd.dll -o vstschedlib.dll strip vstschedlib.dll - cp vstschedlib.dll ../build/pd-scheduler$(arch)/vstschedlib.dll \ No newline at end of file + cp vstschedlib.dll ../build/pd-scheduler$(arch)/vstschedlib.dll + cp vstschedlib.dll ../build/Release64/.pd/bin/vstschedlib.dll \ No newline at end of file