1
0
This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Files
2024-07-22 01:58:46 -03:00

16 lines
399 B
Bash
Executable File

#!/bin/sh
#
# mkbindist - Makes a binary distribution of the ATM on Linux utilities.
# Note it _doesn't_ include kernel images or kernel patches.
# The base directory is assumed to be /usr (not /usr/local)
#
mkdir bin
INSTROOT=`pwd`/bin
INSTPREFIX=$INSTROOT/usr
export INSTROOT INSTPREFIX
make -e install
cd bin
tar cvf - . | gzip -9 >../atm-`cat ../VERSION`-bin.tar.gz
cd ..
rm -rf bin