diff options
author | Tom Tromey <tromey@redhat.com> | 1995-11-27 21:33:03 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 1995-11-27 21:33:03 +0000 |
commit | feb1d2cb26c895ff99d7b8aa885a933c033b924b (patch) | |
tree | b0f1c46cf882e10dc46717662bcb3650de6f9490 /lib | |
parent | c1540b5ae86e445c557f990de812ac763690db1a (diff) | |
download | automake-feb1d2cb26c895ff99d7b8aa885a933c033b924b.tar.gz |
Added clean targets
Diffstat (limited to 'lib')
-rw-r--r-- | lib/am/texinfos.am | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/am/texinfos.am b/lib/am/texinfos.am index 2627573e5..02beb4b13 100644 --- a/lib/am/texinfos.am +++ b/lib/am/texinfos.am @@ -30,3 +30,13 @@ uninstall-info: rm -f $(infodir)/$$file; \ done +mostlyclean-info: + +clean-info: + rm -f $(TEXFILES) + +distclean-info: + +maintainer-clean-info: + rm -f $(INFO) + |