Browse Source

A little cleanup

master
zelaven 4 years ago
parent
commit
8d8fa7d02b
2 changed files with 6 additions and 26 deletions
  1. +6
    -5
      build.sh
  2. +0
    -21
      build2.sh

+ 6
- 5
build.sh View File

@ -1,12 +1,13 @@
#!/bin/bash
rm ZMemory.pk3
cd src
# 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
cd acs_source
bash compile.sh
cd ..
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

+ 0
- 21
build2.sh View File

@ -1,21 +0,0 @@
#!/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

Loading…
Cancel
Save