X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=Makefile.in;h=c1060eaa2492b76c96728a1d504dc2d589e500e0;hb=20c00225a5ddc4a1e3bc00f65b9f6ebc5486d950;hp=7cd91b04f5f5bc85fe5d4a36e592d8d654fede91;hpb=4c4e933cf4f3c7b74a5a17d7ac3caf1b06fccb85;p=mmh diff --git a/Makefile.in b/Makefile.in index 7cd91b0..c1060ea 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 @@ -130,7 +134,7 @@ lint: # ========== DEPENDENCIES FOR MAINTENANCE ========== Makefile: Makefile.in config.status - CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status + ./config.status $@ config.status: configure VERSION ./config.status --recheck @@ -140,7 +144,7 @@ configure: configure.in aclocal.m4 config.h: stamp-h stamp-h: config.h.in config.status - CONFIG_FILES= CONFIG_HEADERS=config.h ./config.status + ./config.status config.h stamp config.h.in: stamp-h.in stamp-h.in: configure.in acconfig.h aclocal.m4 @@ -192,3 +196,18 @@ nmhrelease: cd $(ftpdir) && ln -s $(tarfile) nmh.tar.gz cd $(ftpdir) && md5sum *.gz > MD5SUM +# Create binary and source RPMs. Assumes that configure had already +# been run. Otherwise, there wouldn't be a Makefile. +# _topdir puts build area in the RPM/ directory below the current one. +# _tmppath uses the specified local TMP. +# srcdir is this current, top level nmh directory. +# tarfile and version are as specified in this file. rpmbuild does +# not allow Version to contain any dashes. +rpm: all nmhdist + @rpmbuild --define '_topdir $(shell pwd)/RPM' \ + --define '_tmppath %{_topdir}/TMP' \ + --define 'srcdir $(shell pwd)' \ + --define 'tarfile $(tarfile)' \ + --define 'version $(shell echo $(VERSION) | sed "s/-/_/g")' \ + -ba nmh.spec + @$(RM) $(tarfile)