16 lines
187 B
Makefile
16 lines
187 B
Makefile
# this makefile will build rpm
|
|
|
|
DIR=$(shell pwd)
|
|
|
|
ifndef _UTT_DIST_DIR
|
|
_UTT_DIST_DIR=${DIR}
|
|
endif
|
|
|
|
|
|
# default task
|
|
.PHONY: rpm
|
|
rpm:
|
|
cd ${_UTT_DIST_DIR}; rpmbuild -bb ${DIR}/utt.spec
|
|
|
|
|