|
Revision 1996, 1.2 kB
(checked in by dwalker, 9 years ago)
|
|
new autoconf magic
|
-
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)/admin/acinclude.m4.in $(top_srcdir)/admin/libtool.m4.in |
|---|
| 2 | @cd $(top_srcdir) && cat acinclude.m4.in admin/acinclude.m4.in admin/libtool.m4.in > acinclude.m4 |
|---|
| 3 | |
|---|
| 4 | # don't warn about missing AUTHORS, NEWS, ChangeLog .. files |
|---|
| 5 | AUTOMAKE_OPTIONS = foreign 1.4 |
|---|
| 6 | |
|---|
| 7 | SUBDIRS = src |
|---|
| 8 | |
|---|
| 9 | cvs-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 |
|---|