X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=Makefile.in;h=1fe2d38709a13d68b44c530d9c193e8bdce1d7a3;hp=fe8a221bece744655f9449ccf29b460e3f202eff;hb=a01a41d031c796b526329a4170eb23f0ac93b949;hpb=35c228531bc8e00d43be590255df9408a4fcbe19 diff --git a/Makefile.in b/Makefile.in index fe8a221..1fe2d38 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