diff --git a/templates/lv2-make/Makefile b/templates/lv2-make/Makefile index 5df7f86..41cbacd 100644 --- a/templates/lv2-make/Makefile +++ b/templates/lv2-make/Makefile @@ -2,10 +2,8 @@ include vars.mk ifeq ($(OS), Windows_NT) DLL_SUFFIX = .dll - COMMONPROGRAMFILES = $(shell echo '${COMMONPROGRAMFILES}' | sed 's:\\:/:g') - APPDATA = $(shell echo '${APPDATA}' | sed 's:\\:/:g') - LV2DIR = ${COMMONPROGRAMFILES}/LV2 - LV2DIR_USER = ${APPDATA}/LV2 + LV2DIR = $(shell echo '${COMMONPROGRAMFILES}' | sed 's:\\:/:g')/LV2 + LV2DIR_USER = $(shell echo '${APPDATA}' | sed 's:\\:/:g')/LV2 CC = gcc else UNAME_S = $(shell uname -s) diff --git a/templates/vst3-make/Makefile b/templates/vst3-make/Makefile index 7e47ea9..838521b 100644 --- a/templates/vst3-make/Makefile +++ b/templates/vst3-make/Makefile @@ -3,10 +3,8 @@ include vars.mk ifeq ($(OS), Windows_NT) DLL_SUFFIX = .vst3 PLATFORM = x86_64-win - COMMONPROGRAMFILES = $(shell echo '${COMMONPROGRAMFILES}' | sed 's:\\:/:g') - LOCALAPPDATA = $(shell echo '${LOCALAPPDATA}' | sed 's:\\:/:g') - VST3DIR = ${COMMONPROGRAMFILES}/VST3 - VST3DIR_USER = ${LOCALAPPDATA}/VST3 + VST3DIR = $(shell echo '${COMMONPROGRAMFILES}' | sed 's:\\:/:g')/VST3 + VST3DIR_USER = $(shell echo '${LOCALAPPDATA}' | sed 's:\\:/:g')/Programs/Common/VST3 CC = gcc else UNAME_S = $(shell uname -s)