# 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}