Skip to content

Commit 7f47312

Browse files
authored
Add files via upload
1 parent 0d129d5 commit 7f47312

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

dragwin/Makefile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ VST_DIR = ./vst
1515

1616
BUILD_FLAGS = -fPIC -O2 -DLVRT -DVST6432 -DEMBED -DEMBEDDRAG -DWAVES -DTRACKTIONWM -DVESTIGE -DNEWTIME -DINOUTMEM -DCHUNKBUF -DEMBEDRESIZE -DPCACHE -DBIN_DIR='"$(BIN_DIR)"' $(CXX_FLAGS)
1717

18-
BUILD_FLAGS_WIN = -m64 -fPIC -O2 -DVST6432 -DEMBED -DEMBEDDRAG -DWAVES -DTRACKTIONWM -DVESTIGE -DNEWTIME -DINOUTMEM -DCHUNKBUF -DEMBEDRESIZE -DPCACHE -DDRAGWIN -DBIN_DIR='"$(BIN_DIR)"' -I/opt/wine-staging/include/wine/windows -I/opt/wine-stable/include/wine/windows -I/opt/wine-devel/include/wine/windows -I/usr/include/wine-development/windows -I/usr/include/wine-development/wine/windows -I/usr/include/wine/wine/windows
19-
BUILD_FLAGS_WIN32 = -m32 -fPIC -O2 -DVST6432 -DEMBED -DEMBEDDRAG -DWAVES -DTRACKTIONWM -DVESTIGE -DWCLASS -DNEWTIME -DINOUTMEM -DCHUNKBUF -DEMBEDRESIZE -DPCACHE -DDRAGWIN -DBIN_DIR='"$(BIN_DIR)"' -I/opt/wine-staging/include/wine/windows -I/opt/wine-stable/include/wine/windows -I/opt/wine-devel/include/wine/windows -I/usr/include/wine-development/windows -I/usr/include/wine-development/wine/windows -I/usr/include/wine/wine/windows
18+
BUILD_FLAGS_WIN = -m64 -fPIC -O2 -DVST6432 -DEMBED -DEMBEDDRAG -DWAVES -DTRACKTIONWM -DVESTIGE -DNEWTIME -DINOUTMEM -DCHUNKBUF -DEMBEDRESIZE -DPCACHE -DDRAGWIN -I/opt/wine-staging/include/wine/windows -I/opt/wine-stable/include/wine/windows -I/opt/wine-devel/include/wine/windows -I/usr/include/wine-development/windows -I/usr/include/wine-development/wine/windows -I/usr/include/wine/wine/windows
19+
BUILD_FLAGS_WIN32 = -m32 -fPIC -O2 -DVST6432 -DEMBED -DEMBEDDRAG -DWAVES -DTRACKTIONWM -DVESTIGE -DWCLASS -DNEWTIME -DINOUTMEM -DCHUNKBUF -DEMBEDRESIZE -DPCACHE -DDRAGWIN -I/opt/wine-staging/include/wine/windows -I/opt/wine-stable/include/wine/windows -I/opt/wine-devel/include/wine/windows -I/usr/include/wine-development/windows -I/usr/include/wine-development/wine/windows -I/usr/include/wine/wine/windows
2020

2121
LINK_FLAGS = $(LDFLAGS)
2222

@@ -26,7 +26,7 @@ LINK_WINE32 = -m32 -L/opt/wine-stable/lib/wine -L/opt/wine-devel/lib/wine -L/opt
2626

2727
PATH_TO_FILE = /usr/include/bits
2828

29-
TARGETS = linvst.so lin-vst-servertrack.exe lin-vst-servertrack32.exe
29+
TARGETS = linvst.so lin-vst-server.exe lin-vst-server32.exe
3030

3131
PATH := $(PATH):/opt/wine-stable/bin:/opt/wine-devel/bin:/opt/wine-staging/bin
3232

@@ -38,14 +38,14 @@ all: $(TARGETS)
3838
linvst.so: linvst.unix.o remotevstclient.unix.o remotepluginclient.unix.o paths.unix.o
3939
$(CXX) $^ $(LINK_PLUGIN) -o $@
4040

41-
lin-vst-servertrack.exe: lin-vst-server.wine.o remotepluginserver.wine.o paths.wine.o
41+
lin-vst-server.exe: lin-vst-server.wine.o remotepluginserver.wine.o paths.wine.o
4242
$(WINECXX) $^ $(LINK_WINE) -o $@
4343

4444
ifneq ("$(wildcard $(PATH_TO_FILE))","")
45-
lin-vst-servertrack32.exe: lin-vst-server.wine32.o remotepluginserver.wine32.o paths.wine32.o
45+
lin-vst-server32.exe: lin-vst-server.wine32.o remotepluginserver.wine32.o paths.wine32.o
4646
$(WINECXX) $^ $(LINK_WINE32) -o $@
4747
else
48-
lin-vst-servertrack32.exe:
48+
lin-vst-server32.exe:
4949
endif
5050

5151
# --------------------------------------------------------------
@@ -92,7 +92,7 @@ install:
9292
install -d $(BIN_DIR)
9393
install -d $(VST_DIR)
9494
install -m 755 linvst.so $(VST_DIR)
95-
install -m 755 lin-vst-servertrack.exe lin-vst-servertrack.exe.so $(BIN_DIR)
95+
install -m 755 lin-vst-server.exe lin-vst-server.exe.so $(BIN_DIR)
9696
ifneq ("$(wildcard $(PATH_TO_FILE))","")
97-
install -m 755 lin-vst-servertrack32.exe lin-vst-servertrack32.exe.so $(BIN_DIR)
97+
install -m 755 lin-vst-server32.exe lin-vst-server32.exe.so $(BIN_DIR)
9898
endif

0 commit comments

Comments
 (0)