You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
673 B
21 lines
673 B
#!/bin/bash
|
|
|
|
# Construct the ACS source from the original file.
|
|
cd build_files
|
|
cat ../src/acs_source/ZMEMORY.acs | ../meta_src/metatool.out ZMEMORY.acs ZMEMORY_g.acs ZMEMORY_w.acs ../acs_interface/ZMEMORY.acs ../acs_interface/ZMEMORY_g.acs ../acs_interface/ZMEMORY_w.acs
|
|
|
|
# compile the ACS source
|
|
acc -i $ACC_ZCOMMON_PATH ZMEMORY.acs ../src/acs/ZMEMORY.o
|
|
|
|
cd ../src
|
|
# Bundle everything that isn't:
|
|
# .sh : a shell script.
|
|
thin_arg=$1
|
|
version=$(cat ../version.txt)
|
|
if [[ $thin_arg == "thin" ]]; then
|
|
7za a -tzip ../ZMemory_v$version\_thin.pk3 -r -x\!*.sh -x\!acs/.gitignore -xr\!acs_source
|
|
else
|
|
7za a -tzip ../ZMemory_v$version.pk3 -r -x\!*.sh -x\!acs/.gitignore
|
|
fi
|
|
|
|
|
|
|