]> granicus.if.org Git - pdns/commitdiff
cvsignore
authorBert Hubert <bert.hubert@netherlabs.nl>
Sun, 1 Dec 2002 15:19:10 +0000 (15:19 +0000)
committerBert Hubert <bert.hubert@netherlabs.nl>
Sun, 1 Dec 2002 15:19:10 +0000 (15:19 +0000)
git-svn-id: svn://svn.powerdns.com/pdns/trunk/pdns@45 d19b8d6e-7fed-0310-83ef-9ca221ded41b

19 files changed:
.cvsignore [new file with mode: 0644]
bootstrap
configure.in
modules/.cvsignore [new file with mode: 0644]
modules/db2backend/.cvsignore [new file with mode: 0644]
modules/gmysqlbackend/.cvsignore [new file with mode: 0644]
modules/mysqlbackend/.cvsignore [new file with mode: 0644]
modules/odbcbackend/.cvsignore [new file with mode: 0644]
modules/oraclebackend/.cvsignore [new file with mode: 0644]
modules/pdnsbackend/.cvsignore [new file with mode: 0644]
modules/pipebackend/.cvsignore [new file with mode: 0644]
modules/xdbbackend/.cvsignore [new file with mode: 0644]
pdns/.cvsignore [new file with mode: 0644]
pdns/backends/.cvsignore [new file with mode: 0644]
pdns/backends/bind/.cvsignore [new file with mode: 0644]
pdns/codedocs/.cvsignore [new file with mode: 0644]
pdns/docs/.cvsignore [new file with mode: 0644]
pdns/docs/Makefile
pdns/pdns.in

diff --git a/.cvsignore b/.cvsignore
new file mode 100644 (file)
index 0000000..5fe094d
--- /dev/null
@@ -0,0 +1,16 @@
+Makefile
+Makefile.in
+aclocal.m4
+autom4te.cache
+config.guess
+config.h
+config.h.in
+config.sub
+configure
+depcomp
+install-sh
+ltmain.sh
+missing
+mkinstalldirs
+stamp-h
+ylwrap
index dc8a7a9b800c6689ff8e9285fca86a5498850895..02d263d4a905cb78dc59c145409e00d2e314761c 100755 (executable)
--- a/bootstrap
+++ b/bootstrap
@@ -6,6 +6,6 @@ echo
 
 aclocal
 autoheader
-automake --add-missing --foreign
+automake --add-missing --copy --foreign 
 autoconf
 
index 8a624ced44b85e9b5ffca1836c41bbbf396edaa0..1737fd8a9f0dfc004051c8c938307e159b56ad13 100644 (file)
@@ -293,31 +293,31 @@ do
 
        case "$a" in
                pgmysql)
-               rm -f modules/pgmysqlbackend/OBJECTFILES 
-               cat /dev/null >  modules/pgmysqlbackend/OBJECTLIBS
-               cat /dev/null >  modules/pgmysqlbackend/OBJECTFILES
+               rm -f $srcdir/modules/pgmysqlbackend/OBJECTFILES 
+               cat /dev/null >  $srcdir/modules/pgmysqlbackend/OBJECTLIBS
+               cat /dev/null >  $srcdir/modules/pgmysqlbackend/OBJECTFILES
                if test -n "$domysql"
                then 
-                       echo smysql.o > modules/pgmysqlbackend/OBJECTFILES
+                       echo smysql.o > $srcdir/modules/pgmysqlbackend/OBJECTFILES
                fi 
 
                if test -n "$dopgsql"
                then 
-                       echo spgsql.o >> modules/pgmysqlbackend/OBJECTFILES
+                       echo spgsql.o >> $srcdir/modules/pgmysqlbackend/OBJECTFILES
                fi 
                ;;
        esac
 
 
-       for b in $(cat modules/${a}backend/OBJECTFILES)
+       for b in $(cat $srcdir/modules/${a}backend/OBJECTFILES)
        do
                moduleobjects="$moduleobjects ../modules/${a}backend/$b"
        done
-       modulelibs="$modulelibs $(cat modules/${a}backend/OBJECTLIBS)"
+       modulelibs="$modulelibs $(cat $srcdir/modules/${a}backend/OBJECTLIBS)"
 done
 export moduledirs moduleobjects modulelibs
 
 AC_OUTPUT(Makefile modules/Makefile pdns/Makefile pdns/codedocs/Makefile \
-pdns/backends/bind/Makefile pdns/backends/Makefile pdns/pdns \
+pdns/backends/Makefile pdns/backends/bind/Makefile pdns/pdns \
 modules/mysqlbackend/Makefile modules/pdnsbackend/Makefile \
 modules/pgmysqlbackend/Makefile modules/db2backend/Makefile)
diff --git a/modules/.cvsignore b/modules/.cvsignore
new file mode 100644 (file)
index 0000000..3dda729
--- /dev/null
@@ -0,0 +1,2 @@
+Makefile.in
+Makefile
diff --git a/modules/db2backend/.cvsignore b/modules/db2backend/.cvsignore
new file mode 100644 (file)
index 0000000..3dda729
--- /dev/null
@@ -0,0 +1,2 @@
+Makefile.in
+Makefile
diff --git a/modules/gmysqlbackend/.cvsignore b/modules/gmysqlbackend/.cvsignore
new file mode 100644 (file)
index 0000000..3dda729
--- /dev/null
@@ -0,0 +1,2 @@
+Makefile.in
+Makefile
diff --git a/modules/mysqlbackend/.cvsignore b/modules/mysqlbackend/.cvsignore
new file mode 100644 (file)
index 0000000..f23b640
--- /dev/null
@@ -0,0 +1,3 @@
+Makefile.in
+Makefile
+configure
diff --git a/modules/odbcbackend/.cvsignore b/modules/odbcbackend/.cvsignore
new file mode 100644 (file)
index 0000000..3dda729
--- /dev/null
@@ -0,0 +1,2 @@
+Makefile.in
+Makefile
diff --git a/modules/oraclebackend/.cvsignore b/modules/oraclebackend/.cvsignore
new file mode 100644 (file)
index 0000000..3dda729
--- /dev/null
@@ -0,0 +1,2 @@
+Makefile.in
+Makefile
diff --git a/modules/pdnsbackend/.cvsignore b/modules/pdnsbackend/.cvsignore
new file mode 100644 (file)
index 0000000..f23b640
--- /dev/null
@@ -0,0 +1,3 @@
+Makefile.in
+Makefile
+configure
diff --git a/modules/pipebackend/.cvsignore b/modules/pipebackend/.cvsignore
new file mode 100644 (file)
index 0000000..f23b640
--- /dev/null
@@ -0,0 +1,3 @@
+Makefile.in
+Makefile
+configure
diff --git a/modules/xdbbackend/.cvsignore b/modules/xdbbackend/.cvsignore
new file mode 100644 (file)
index 0000000..3dda729
--- /dev/null
@@ -0,0 +1,2 @@
+Makefile.in
+Makefile
diff --git a/pdns/.cvsignore b/pdns/.cvsignore
new file mode 100644 (file)
index 0000000..191ac39
--- /dev/null
@@ -0,0 +1,8 @@
+Makefile.in
+Makefile
+buildroot.sh
+config.h
+mkbindist
+pdns
+showvar
+stamp-h
diff --git a/pdns/backends/.cvsignore b/pdns/backends/.cvsignore
new file mode 100644 (file)
index 0000000..3dda729
--- /dev/null
@@ -0,0 +1,2 @@
+Makefile.in
+Makefile
diff --git a/pdns/backends/bind/.cvsignore b/pdns/backends/bind/.cvsignore
new file mode 100644 (file)
index 0000000..3dda729
--- /dev/null
@@ -0,0 +1,2 @@
+Makefile.in
+Makefile
diff --git a/pdns/codedocs/.cvsignore b/pdns/codedocs/.cvsignore
new file mode 100644 (file)
index 0000000..3dda729
--- /dev/null
@@ -0,0 +1,2 @@
+Makefile.in
+Makefile
diff --git a/pdns/docs/.cvsignore b/pdns/docs/.cvsignore
new file mode 100644 (file)
index 0000000..569855e
--- /dev/null
@@ -0,0 +1,5 @@
+html
+pdns
+pdns.pdf
+pdns.txt
+html.tar.gz
index 4353bdb3caa3c740a782d4ec9638457fdf9a49bb..65d42cb33c72144a15d185699909349e87dcc3e7 100644 (file)
@@ -1,10 +1,10 @@
-# $Id: Makefile,v 1.1 2002/11/27 15:18:34 ahu Exp $ 
+# $Id: Makefile,v 1.2 2002/12/01 15:19:10 ahu Exp $ 
 
 all: pdns.txt pdns.pdf html/index.html html.tar.gz
 
 
 clean:
-       rm -rf *.dvi *.pdf *.tex *.toc *.aux *.txt *.ps *.bak *.tmp *~ *.log html
+       rm -rf *.dvi *.pdf *.tex *.toc *.aux *.txt *.ps *.bak *.tmp *~ *.log html.tar.gz html pdns
 
 html/index.html: pdns.sgml
        db2html -o html $<
index 987fb7bf5da0417589bd4bd3a3ab30c5a71c1132..fc223c291ea5ee6a107f975c2ae2a2435a10ea3c 100755 (executable)
@@ -165,7 +165,7 @@ case "$1" in
 
 
        *)
-       echo pdns [start\|stop\|restart\|status\|dump\|show\|mrtg\|cricket\|monitor]
+       echo pdns [start\|stop\|force-reload\|restart\|status\|dump\|show\|mrtg\|cricket\|monitor]
 
        ;;
 esac