mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-11-30 02:47:56 +08:00
34 lines
865 B
Makefile
34 lines
865 B
Makefile
##########################################################
|
|
#
|
|
# make PKG_NAME=acl-libs
|
|
# make PKG_NAME=acl-master
|
|
#
|
|
#########################################################
|
|
ifndef $(PKG_NAME)
|
|
PKG_NAME := acl-libs
|
|
endif
|
|
PKG_VERSION = $(shell grep '^Version:' $(PKG_NAME).spec | awk '{print $$2}')
|
|
|
|
PWD = $(shell pwd)
|
|
|
|
$(shell chmod +x control)
|
|
DEBUGINFO=$(shell ./control debuginfo )
|
|
|
|
all: libs
|
|
|
|
debuginfo:
|
|
tar:
|
|
@./control pack ${PKG_NAME}
|
|
|
|
libs: tar
|
|
@mkdir -p {BUILD,BUILDROOT,SRPMS,SPECS}
|
|
@rpmbuild --define "_topdir ${PWD}" --define "_sourcedir ${PWD}" \
|
|
--define "_rpmdir ${PWD}" ${DEBUGINFO} -bb $(PKG_NAME).spec
|
|
@echo Binary PRM for $(PKG_NAME) has been created under ${PWD}/ \
|
|
`rpm --eval '%{_arch}'`
|
|
|
|
clean cl:
|
|
@rm -rf $(PKG_NAME)-$(PKG_VERSION)
|
|
@rm -rf *.tar.gz
|
|
@rm -rf BUILD BUILDROOT SRPMS SPECS `rpm --eval '%{_arch}'`
|