X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=Makefile.in;h=a3ef699943fb636138ff32bd426f75dea7155b2b;hb=cc9254b17cbfe044120d58053212eb9983631c11;hp=fe8a221bece744655f9449ccf29b460e3f202eff;hpb=35c228531bc8e00d43be590255df9408a4fcbe19;p=mmh diff --git a/Makefile.in b/Makefile.in index fe8a221..a3ef699 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,8 +1,6 @@ # # Makefile for top level of nmh distribution # -# $Id$ -# # nmh version VERSION = @VERSION@ @@ -48,7 +46,7 @@ default_pager = @pagerpath@ CC = @CC@ CPPFLAGS = @CPPFLAGS@ -DEFS = @DEFS@ +DEFS = @DEFS@ @OURDEFS@ CFLAGS = @CFLAGS@ LDFLAGS = @LDFLAGS@ LIBS = @LIBS@ @@ -88,7 +86,12 @@ all-recursive: (cd $$subdir && $(MAKE) $(MAKEDEFS) all) || exit 1; \ done -install uninstall: +install: all + for subdir in $(SUBDIRS); do \ + (cd $$subdir && $(MAKE) $(MAKEDEFS) $@) || exit 1; \ + done + +uninstall: for subdir in $(SUBDIRS); do \ (cd $$subdir && $(MAKE) $(MAKEDEFS) $@) || exit 1; \ done @@ -108,6 +111,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 @@ -192,3 +196,12 @@ nmhrelease: cd $(ftpdir) && ln -s $(tarfile) nmh.tar.gz cd $(ftpdir) && md5sum *.gz > MD5SUM +# Create binary and source RPMs. Be care if using any existing build +# (make) products: it's usually a good idea to run make realclean first. +# _topdir puts build area in the RPM/ directory below the current one. +# _tmppath uses the specified local TMP. +rpm: all nmhdist + @rpmbuild --define '_topdir $(shell pwd)/RPM' \ + --define '_tmppath %{_topdir}/TMP' \ + --define 'srcdir $(shell pwd)' \ + -ba nmh.spec