]> diplodocus.org Git - nmh/blobdiff - Makefile.in
Wrapped #include of config.h with #ifdef HAVE_CONFIG_H, just in case someone ever...
[nmh] / Makefile.in
index 1fe2d38709a13d68b44c530d9c193e8bdce1d7a3..6b7b1d661df405ae7fdf4b1edb60e65bd61b3828 100644 (file)
@@ -9,6 +9,8 @@ SHELL = /bin/sh
 @SET_MAKE@
 
 srcdir = @srcdir@
+abs_srcdir = @abs_srcdir@
+datarootdir = @datarootdir@
 VPATH  = @srcdir@
 
 # ========== USER CONFIGURATION SECTION ==========
@@ -32,6 +34,9 @@ etcdir      = @sysconfdir@
 # location of man pages
 mandir      = @mandir@
 
+# RPM build root
+rpmdir      = @rpmdir@
+
 # location of incoming mail
 mailspool   = @mailspool@
 
@@ -106,11 +111,13 @@ superclean:  superclean-recursive  superclean-local
 
 mostlyclean-local:
        rm -f *~
+       $(RM) -r autom4te.cache
 
 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
 
@@ -195,3 +202,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