release.sh: release helper script

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

View File

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

6
release.sh Normal file
View File

@ -0,0 +1,6 @@
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 clean all
make TARGET=i686-w64-mingw32- MAIN=$M.Windows.i686 clean all