root/tags/forwarder-0_51/email/Makefile.am

Revision 660, 1.1 kB (checked in by dwalker, 9 years ago)

adding libtool.m4, acinclude.m4 is now acinclude.m4.in
cleanups

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1$(top_srcdir)/acinclude.m4: $(top_srcdir)/acinclude.m4.in $(top_srcdir)/libtool.m4.in
2    @cd $(top_srcdir) && cat acinclude.m4.in libtool.m4.in > acinclude.m4
3
4# don't warn about missing AUTHORS, NEWS, ChangeLog .. files
5AUTOMAKE_OPTIONS = foreign 1.4
6
7SUBDIRS = src
8
9cvs-clean:
10    @if test ! -d CVS; then \
11          echo "you don't have a toplevel CVS directory."; \
12          echo "You most certainly didn't use cvs to get these sources."; \
13          echo "But this function depends on cvs's informations."; \
14          exit 1 ;\
15        fi;\
16        pwd=`pwd` ;\
17        dirs=`find . -type d | grep -v CVS | sed -e "s#^./##"` ;\
18        for i in $$dirs; do \
19          if test ! -d $$pwd/$$i/CVS; then \
20            echo "D $$i" ;\
21            rm -rf $$pwd/$$i; \
22            continue; \
23          fi ;\
24          cd $$pwd/$$i ;\
25          for f in * .*; do \
26            if test ! -d $$f; then \
27              if grep "^/$$f/" CVS/Entries >/dev/null; then \
28                a="b"; \
29              else \
30                echo "F $$i/$$f"; \
31                rm -f $$pwd/$$i/$$f; \
32              fi; \
33            fi ; \
34          done; \
35        done
Note: See TracBrowser for help on using the browser.