Remove RCS keywords, since they no longer work after git migration.
[mmh] / Makefile.in
index fe8a221..1fe2d38 100644 (file)
@@ -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