chiark / gitweb /
Try to make close to GNU Standards for Makefile targets.
[userv.git] / Makefile.in
index be5687bafdb463213986fc6b69f8c89d657e4a0b..c6d66b90d3bb6d9b127bca5204293f749b2e6d27 100644 (file)
@@ -1,6 +1,6 @@
 #  userv - Makefile.in
 #  
-#  Copyright (C)1996-1997 Ian Jackson
+#  Copyright (C)1996-1997,1999 Ian Jackson
 #  
 #  This is free software; you can redistribute it and/or modify it
 #  under the terms of the GNU General Public License as published by
 #  along with userv; if not, write to the Free Software
 #  Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
+VERSION=@VERSION@
+VEREXT=std
+
 CC=@CC@
-CFLAGS=@CFLAGS@ $(XCFLAGS)
+CFLAGS=@CFLAGS@ $(XCFLAGS) -DVERSION='"$(VERSION)"' -DVEREXT='"$(VEREXT)"' $(WERROR)
 OPTIMISE=@OPTIMISE@
 CPPFLAGS=@DEBUGDEFS@ $(XCPPFLAGS)
-LDLIBS=@DEBUGLIBS@ $(XLDLIBS)
+LDLIBS=@DEBUGLIBS@ @LIBS@ $(XLDLIBS)
 
 M4=m4
 M4FLAGS=
 LEX=flex
 CWD=$(shell pwd)
 
+INSTALL_GROUP=root
+INSTALL_FLAGS=-u root -g $(INSTALL_GROUP)
+
 INSTALL=@INSTALL@
-INSTALL_PROGRAM=@INSTALL_PROGRAM@
-INSTALL_DATA=@INSTALL_DATA@
+INSTALL_PROGRAM=@INSTALL_PROGRAM@ $(INSTALL_FLAGS)
+INSTALL_DATA=@INSTALL_DATA@ $(INSTALL_FLAGS)
 prefix=@prefix@
 exec_prefix=$(prefix)
 bindir=$(exec_prefix)/bin
 sbindir=$(exec_prefix)/sbin
 etcdir=/etc
 etcsubdir=$(etcdir)/userv
+docdir=$(prefix)/userv
+
+TARGETS=       daemon client
+TARGETS_DOC_PS=        spec.ps overview.ps
+TARGETS_DOC=   spec.html $(TARGETS_DOC_PS)
 
 SOURCES=       Makefile.in configure.in acconfig.h                     \
                client.c common.h                                       \
-               daemon.c daemon.h ddebug.c parser.c lib.c lib.h         \
+               overlord.c process.c servexec.c                         \
+               daemon.h debug.c parser.c lib.c lib.h                   \
                language.i4 lexer.l.m4 tokens.h.m4
-ALSOSHIP=      system.default system.override \
-               spec.sgml overview.fig overview.ps \
-               COPYING install-sh .cvsignore
-GENSHIP=       lexer.l lexer.c tokens.h pcsum.h \
-               spec.html spec.ps overview.ps
+
+ALSOSHIP=      README INSTALL Changelog COPYING \
+               system.default system.override \
+               spec.sgml.in overview.fig overview.ps \
+               buildship install-sh .cvsignore
+
+GENSHIP_CLEAN= pcsum.h lexer.l lexer.c tokens.h config.h.in spec.sgml $(TARGETS_DOC)
+GENSHIP=       $(GENSHIP_CLEAN) configure
 
 SHIPTARGETS=   $(SOURCES) $(ALSOSHIP) $(GENSHIP)
 
-all:           daemon client
+all:           $(TARGETS)
+
+docs:          $(TARGETS_DOC)
 
 install:       all
-               $(INSTALL_PROGRAM) -s -o root -g root -m 755 daemon $(sbindir)/uservd
-               $(INSTALL_PROGRAM) -s -o root -g root -m 4755 client $(bindir)/userv
-               $(INSTALL) -d -o root -g root -m 2755 $(etcsubdir)
-               if ! test -f $(etcsubdir)/system.default; then \
-                       $(INSTALL_DATA) -o root -g root system.default $(etcsubdir); fi
-               if ! test -f $(etcsubdir)/system.override; then \
-                       $(INSTALL_DATA) -o root -g root system.override $(etcsubdir); fi
+               $(INSTALL_PROGRAM) -m 755 daemon $(sbindir)/uservd
+               $(INSTALL_PROGRAM) -m 4755 client $(bindir)/userv
+               $(INSTALL) -d -m 2755 $(etcsubdir) \
+       $(etcsubdir)/default.d $(etcsubdir)/services.d $(etcsubdir)/override.d
+               if test ! -f $(etcsubdir)/system.default; then 
+                       $(INSTALL_DATA) system.default $(etcsubdir); fi
+               if test ! -f $(etcsubdir)/system.override; then \
+                       $(INSTALL_DATA) system.override $(etcsubdir); fi
+
+install-strip:
+               $(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' install
+
+install-doc:   $(TARGETS_DOC)
+               $(INSTALL) -d -m 2755 $(docdir) $(docdir)/spec.html
+               $(INSTALL_DATA) -m 644 $(TARGETS_DOC_PS) $(docdir)/.
+               $(INSTALL_DATA) -m 644 spec.html/*.html $(docdir)/spec.html/.
+
+uninstall:
+               rm -f $(bindir)/userv $(sbindir)/uservd
 
-daemon:                daemon.o parserlexer.o ddebug.o lib.o
+uninstall-doc:
+               cd $docdir && rm -rf $(TARGETS_DOC)
+
+daemon:                overlord.o process.o servexec.o parserlexer.o debug.o lib.o both.o
+               $(CC) $(LDFLAGS) -o $@ $^ $(LDLIBS)
+
+client:                client.o both.o
+               $(CC) $(LDFLAGS) -o $@ $^ $(LDLIBS)
 
 lexer.l:       language.i4
 
-client.o:      config.h common.h pcsum.h
+spec.sgml:     spec.sgml.in Makefile
+               sed -e '/<version><\/version>/ s/>/&$(VERSION)/' \
+                       spec.sgml.in >$@.new && mv -f $@.new $@
+
+client.o:      config.h common.h pcsum.h both.h version.h
+
+process.o:     config.h common.h pcsum.h both.h daemon.h lib.h tokens.h
+
+overlord.o:    config.h common.h pcsum.h daemon.h
 
-daemon.o:      config.h common.h pcsum.h daemon.h lib.h tokens.h
+servexec.o:    config.h common.h pcsum.h daemon.h lib.h version.h
 
-lib.o:         config.h lib.h
+lib.o:         config.h common.h lib.h
 
-ddebug.o:      config.h common.h pcsum.h daemon.h lib.h tokens.h
+debug.o:       config.h common.h pcsum.h daemon.h lib.h tokens.h
 
 parserlexer.o: lexer.c parser.c config.h common.h pcsum.h daemon.h lib.h tokens.h
 # lexer.c #include's parser.c at the end.  Blame flex.
                $(CC) -c $(CPPFLAGS) $(CFLAGS) lexer.c -o $@
 
-pcsum.h:       common.h
-               md5sum common.h | perl -pe 's/../0x$$&,/g; s/,$$//;' \
-                       >pcsum.h.new && mv pcsum.h.new pcsum.h
+pcsum.h:       common.h config.h config.status Makefile
+               cat $^ | md5sum | sed -e 's/  -$$//; s/../0x&,/g; s/,$$//;' >pcsum.h.new
+               cmp pcsum.h.new pcsum.h || mv -f pcsum.h.new pcsum.h
+               @rm -f pcsum.h.new
+
+version.h:     Makefile
+               echo '#define VERSION "$(VERSION)"' >$@.new && mv -f $@.new $@
 
 tokens.h:      language.i4
 
+pcsum.h
+               rm -f overview.eps
+               rm -f spec.lout* spec.text* spec.sgml spec.sgml.new spec.ps?*
+               rm -rf spec.html?*
+               rm -f lout.li *.lix *.ldx config.cache
+               rm -f *.o *~ core ./#*#
+
 autoconf configure:
                autoheader
                autoconf
 
 clean:
-               rm -f daemon client lexer.l lexer.c tokens.h pcsum.h
-               rm -f overview.eps overview.ps
-               rm -f spec.lout* spec.ps spec.text* lout.li
-               rm -rf spec.html*
-               rm -f *.o *~ core ./#*#
+               rm -rf $(TARGETS) *.o
 
-distclean:     clean
+distclean mostlyclean: clean
                rm -f config.status config.log Makefile config.h
 
-realclean:     distclean
-               rm -f configure config.h.in
+maintainer-clean:      distclean
+               rm -rf $(GENSHIP_CLEAN)
 
-shipprep:      $(SHIPTARGETS)
+dist-prep:     $(SHIPTARGETS)
 
-ship:          $(SHIPTARGETS)
-               rm -rf d && mkdir d && cp -av $^ d
-               mv d userv-$(VERSION)
-               GZIP=-9v tar zvvcf ../userv-$(VERSION).tar.gz userv-$(VERSION)
-               rm -rf userv-$(VERSION)
+dist:          $(SHIPTARGETS)
+               rm -rf shipcheck
+               mkdir -p shipcheck/userv-$(VERSION)
+               cp -a $^ shipcheck/userv-$(VERSION)
+               cd shipcheck && \
+                GZIP=-9v tar zvvcf userv-$(VERSION).tar.gz userv-$(VERSION)
+               rm -rf shipcheck/userv-$(VERSION)
 
 linecount:     $(SOURCES)
                wc -l $^
@@ -114,7 +167,7 @@ linecount:  $(SOURCES)
                rm -rf $@; debiandoc2html $<
 
 %.ps:          %.sgml
-               debiandoc2ps -1 -k -O $< >$@.new && mv $@.new $@
+               debiandoc2ps -1 -O $< >$@.new && mv $@.new $@
 
 %.ps:          %.fig
                fig2dev -L ps -c -l dummy -P -z A4 $< >$@.new && mv $@.new $@