b2647ded51
Można testować: make dist_tarball oraz make dist_rpm. git-svn-id: svn://atos.wmid.amu.edu.pl/utt@11 e293616e-ec6a-49c2-aa92-f4a8b91c5d16
24 lines
512 B
Makefile
24 lines
512 B
Makefile
# this makefile will build rpm
|
|
|
|
DIR=$(shell pwd)
|
|
|
|
ifndef UTT_DIST_DIR
|
|
UTT_DIST_DIR=${DIR}
|
|
endif
|
|
|
|
_RPM_FROOT=${DIR}/rmp_root
|
|
_UTT_ROOT=${_RPM_FROOT}/usr/local
|
|
# default task
|
|
.PHONY: rpm
|
|
rpm:
|
|
if test -d ${_RPM_FROOT}; then rm -fr ${_RMP_FROOT}; fi
|
|
mkdir -p ${_UTT_ROOT}
|
|
cp -rf ${UTT_DIST_DIR}/* ${_UTT_ROOT}/
|
|
cp ../common/utt_make_config.pl ${_UTT_ROOT}/bin/
|
|
chmod 755 ${_UTT_ROOT}/bin/utt_make_config.pl
|
|
cp ../files/* ${_UTT_ROOT}/
|
|
cd ${_RPM_FROOT}; rpmbuild -bb ${DIR}/utt.spec
|
|
|
|
rm -rf ${_RPM_FROOT}
|
|
|