chiark / gitweb /
Change default user for git-daemon to userv-git and default user for dyndns to userv...
[userv-utils.git] / git-daemon / Makefile
index ad8dd782ec8cef4863cc874a92dd09c52195b149..22407c73d99d216a39d65f0f0caa2c164de89258 100644 (file)
@@ -7,7 +7,7 @@
 
 include ../settings.make
 
-gituser=       git
+gituser=       userv-git
 varloggit=     $(varlog)/git
 
 TARGETS=       git-upload-pack inetd.conf git-daemon git-service logrotate
@@ -45,7 +45,16 @@ install:     all
                        mv $$f:new $$f; \
                done
 
-clean:
-               rm -f $(TARGETS)
+mkdocdir:
+               mkdir -p $(docdir)/userv-git-daemon
+
+install-docs:  mkdocdir
+               cp README $(docdir)/userv-git-daemon/README
+
+install-examples: all mkdocdir
+               cp inetd.conf $(docdir)/userv-git-daemon/inetd.conf
+
+distclean clean:
+               rm -f $(TARGETS) *~
 
 # end