X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=Makefile.in;h=39e027b374ebfe25113dea2591ddf7d360302334;hb=c70ca7816838825c93fbc54ac9e4a6e2a7bef6d8;hp=2fa252c72d2b674d9a19c053adb676c7d5c48bbb;hpb=59f485ee6d6733207b77e2d5ab14823b8d69b7cd;p=mmh diff --git a/Makefile.in b/Makefile.in index 2fa252c..39e027b 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,8 +1,6 @@ # # Makefile for top level of nmh distribution # -# $Id$ -# # nmh version VERSION = @VERSION@ @@ -11,6 +9,7 @@ SHELL = /bin/sh @SET_MAKE@ srcdir = @srcdir@ +abs_srcdir = @abs_srcdir@ VPATH = @srcdir@ # ========== USER CONFIGURATION SECTION ========== @@ -34,6 +33,9 @@ etcdir = @sysconfdir@ # location of man pages mandir = @mandir@ +# RPM build root +rpmdir = @rpmdir@ + # location of incoming mail mailspool = @mailspool@ @@ -48,7 +50,7 @@ default_pager = @pagerpath@ CC = @CC@ CPPFLAGS = @CPPFLAGS@ -DEFS = @DEFS@ +DEFS = @DEFS@ @OURDEFS@ CFLAGS = @CFLAGS@ LDFLAGS = @LDFLAGS@ LIBS = @LIBS@ @@ -113,6 +115,7 @@ clean-local: mostlyclean-local distclean-local: clean-local rm -f Makefile config.h config.status config.log config.cache stamp-h distname + $(RM) -r RPM realclean-local: distclean-local @@ -197,3 +200,15 @@ nmhrelease: cd $(ftpdir) && ln -s $(tarfile) nmh.tar.gz cd $(ftpdir) && md5sum *.gz > MD5SUM +# Create binary and source RPMs. +# _topdir is the specified RPM build root. +# _tmppath is TMP below _topdir. +rpm: nmhdist + @test -d $(rpmdir)/SOURCES || mkdir -p $(rpmdir)/SOURCES + @test -d $(rpmdir)/SPECS || mkdir -p $(rpmdir)/SPECS + @mv -f $(tarfile) $(rpmdir)/SOURCES + @cp -p VERSION $(rpmdir)/SOURCES + @cp -p nmh.spec $(rpmdir)/SPECS + @rpmbuild --define '_topdir $(rpmdir)' \ + --define '_tmppath %{_topdir}/TMP' \ + -ba $(rpmdir)/SPECS/nmh.spec