19 lines
645 B
Makefile
19 lines
645 B
Makefile
# Makefile for source rpm: elfutils
|
|
# $Id$
|
|
NAME := elfutils
|
|
SPECFILE = $(firstword $(wildcard *.spec))
|
|
|
|
include ../common/Makefile.common
|
|
|
|
MONOTONE = monotone
|
|
|
|
elfutils-portability.patch: elfutils-$(VERSION).tar.gz
|
|
@rm -rf elfutils-master elfutils-portable
|
|
$(MONOTONE) checkout -b com.redhat.elfutils elfutils-master
|
|
$(MONOTONE) checkout -b com.redhat.elfutils.portable elfutils-portable
|
|
cd elfutils-master; autoreconf; rm -rf autom4te.cache MT
|
|
cd elfutils-portable; autoreconf; rm -rf autom4te.cache MT
|
|
diff -rpu elfutils-master elfutils-portable | \
|
|
filterdiff --remove-timestamps --strip=1 --addprefix=elfutils/ > $@.new
|
|
mv $@.new $@
|