source: trunk/third/moira/Makefile.in @ 23740

Revision 23740, 1.4 KB checked in by broder, 15 years ago (diff)
In moira: * New CVS snapshot (Trac: #195) * Drop patches that have been incorporated upstream. * Update to build without krb4 on systems that no longer have it. This doesn't build yet on squeeze, which lacks a krb4 library, but I'm committing now before I start hacking away at a patch to fix that.
Line 
1# $Id: Makefile.in,v 1.12 2009-01-05 22:25:07 zacheiss Exp $
2
3SHELL=/bin/sh
4@SET_MAKE@
5
6srcdir=@srcdir@
7VPATH=@srcdir@
8prefix=@prefix@
9exec_prefix=@exec_prefix@
10bindir=@bindir@
11sbindir=@sbindir@
12mandir=@mandir@
13mrbindir=@mrbindir@
14
15CLIENTDIRS=include lib clients update man @WEBMOIRA_SUBDIRS@
16SVRDIRS=db server backup dbck dcm gen regtape incremental @AFS_SYNCDIR@ @RSAREF_SUBDIRS@
17DEPDIRS=@COM_ERR_SUBDIR@
18
19SUBDIRS=$(CLIENTDIRS) @SVRSUBDIRS@
20
21all:
22        @for d in $(SUBDIRS); do (echo "### Making $@ in $$d"; cd $$d; $(MAKE) $@) || exit 1; done
23
24clean:
25        @for d in $(SUBDIRS); do (echo "### Making $@ in $$d"; cd $$d; $(MAKE) $@) || exit 1; done
26
27cleandir distclean:
28        rm -f config.log config.cache config.status Makefile
29        @for d in $(SUBDIRS); do (echo "### Making $@ in $$d"; cd $$d; $(MAKE) $@) || exit 1; done
30
31depend:
32        @if [ "x$(DEPDIRS)" != x ]; then \
33            for d in $(DEPDIRS); do (echo "### Making all in $$d"; cd $$d; $(MAKE) all) || exit 1; done; \
34        fi
35        @for d in $(SUBDIRS); do (echo "### Making $@ in $$d"; cd $$d; $(MAKE) $@) || exit 1; done
36
37install:
38        $(srcdir)/mkinstalldirs $(DESTDIR)$(bindir) $(DESTDIR)$(sbindir) $(DESTDIR)$(mandir)
39        @for d in $(SUBDIRS); do (echo "### Making $@ in $$d"; cd $$d; $(MAKE) $@) || exit 1; done
40
41svrinstall:
42        $(srcdir)/mkinstalldirs $(DESTDIR)$(mrbindir)
43        @for d in $(SVRDIRS); do (echo "### Making install in $$d"; cd $$d; $(MAKE) install) || exit 1; done
44
45world: depend all
46
Note: See TracBrowser for help on using the repository browser.