release.sh: release helper script

This commit is contained in:
Zack Buhman 2023-08-24 09:43:57 +00:00
parent c9a478f7df
commit 6647d6ddda
2 changed files with 8 additions and 1 deletions

View File

@ -15,7 +15,7 @@ SRC += stmt_string.cpp
OBJ = $(patsubst %.cpp,%.o,$(SRC)) OBJ = $(patsubst %.cpp,%.o,$(SRC))
DEP = $(patsubst %.cpp,%.d,$(SRC)) DEP = $(patsubst %.cpp,%.d,$(SRC))
MAIN = scu-dsp-asm MAIN ?= scu-dsp-asm
all: $(MAIN) all: $(MAIN)

7
release.sh Normal file
View File

@ -0,0 +1,7 @@
V=2
M=scu-dsp-asm.$V
make TARGET=x86_64-pc-linux-gnu- MAIN=$M.Linux.x86_64 clean all
make TARGET=x86_64-w64-mingw32- MAIN=$M.Windows.x86_64.exe clean all
make TARGET=i686-w64-mingw32- MAIN=$M.Windows.i686.exe clean all
#make MAIN=$M.MacOS-Ventura.x86_64 clean all