]> code.citadel.org Git - citadel.git/blobdiff - webcit/Makefile.in
* Threw away most of the gettextize-generated build system in the po/
[citadel.git] / webcit / Makefile.in
index 7af1c05ed0995520715adcbab5dc11e1d8606da9..f5be6d5cecc104a99ed8b073f967f5847e358074 100644 (file)
@@ -8,14 +8,21 @@ INSTALL=@INSTALL@
 LIBOBJS=@LIBOBJS@
 LIBS=@LIBS@
 LDFLAGS=@LDFLAGS@
+SED=@SED@
 SETUP_LIBS=@SETUP_LIBS@
 PTHREAD_DEFS=@PTHREAD_DEFS@
 srcdir=@srcdir@
 prefix=@prefix@
+top_builddir=`pwd`
+
+LIB_SUBDIRS=
+PROG_SUBDIRS=po
+SUBDIRS=$(LIB_SUBDIRS) $(PROG_SUBDIRS) 
 
 # End of configuration section
 
-all: webserver setup
+all: all-progs-recursive webserver setup
+
 
 .SUFFIXES: .c .o
 
@@ -23,7 +30,8 @@ clean:
        rm -f *.o webcit webserver
 
 distclean: clean
-       rm -f Makefile config.cache config.log config.status
+       rm -f Makefile config.cache config.log config.status\
+               $(srcdir)/TAGS
 
 setup: setup.o tools.o
        $(CC) setup.o tools.o \
@@ -57,7 +65,7 @@ webserver: webserver.o context_loop.o tools.o ical_dezonify.o \
        $(CC) $(CFLAGS) $(DEFS) -c $(PTHREAD_DEFS) -DWEBCITDIR=\"$(prefix)\" -DLOCALEDIR=\"$(prefix)/locale\" $<
 
 Makefile: $(srcdir)/Makefile.in config.status
-       CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
+       CONFIG_FILES="Makefile" CONFIG_HEADERS= $(SHELL) ./config.status
 
 config.status: $(srcdir)/configure
        $(SHELL) ./config.status --recheck
@@ -68,15 +76,52 @@ $(srcdir)/configure: $(srcdir)/configure.in $(srcdir)/aclocal.m4
 install:
        test -d $(root)$(prefix) || mkdir $(root)$(prefix)
        test -d $(root)$(prefix)/static || mkdir $(root)$(prefix)/static
-       for i in `find tiny_mce -type d | grep -v CVS` \
+       for i in `find tiny_mce -type d | grep -v .svn` \
+               ; do \
+               test -d $(root)$(prefix)/$$i || mkdir $(root)$(prefix)/$$i; \
+       done
+       for i in `find locale -type d | grep -v .svn` \
                ; do \
                test -d $(root)$(prefix)/$$i || mkdir $(root)$(prefix)/$$i; \
        done
        for i in \
                webserver \
                setup \
-               `find static -type f | grep -v CVS` \
-               `find tiny_mce -type f | grep -v CVS` \
+               `find static -type f | grep -v .svn` \
+               `find tiny_mce -type f | grep -v .svn` \
+               `find locale -type f | grep -v .svn` \
                ; do \
                $(INSTALL) $$i $(root)$(prefix)/$$i; \
        done
+
+TAGS clean-recursive distclean-recursive depend-recursive check-recursive \
+  mostlyclean-recursive realclean-recursive:
+       @for subdir in $(SUBDIRS); do \
+         if test -d $$subdir ; then \
+           target=`echo $@|$(SED) 's/-recursive//'`; \
+           echo making $$target in $$subdir; \
+           (cd $$subdir && $(MAKE) $$target) || exit 1; \
+         fi ; \
+       done
+
+all-progs-recursive install-progs-recursive install-strip-progs-recursive \
+  uninstall-progs-recursive:
+       @for subdir in $(PROG_SUBDIRS); do \
+         if test -d $$subdir ; then \
+           target=`echo $@|$(SED) 's/-progs-recursive//'`; \
+           echo making $$target in $$subdir; \
+           (cd $$subdir && $(MAKE) $$target) || exit 1; \
+         fi ; \
+       done
+
+all-libs-recursive install-libs-recursive install-strip-libs-recursive \
+  uninstall-libs-recursive install-shlibs-libs-recursive \
+  install-shlibs-strip-libs-recursive uninstall-shlibs-libs-recursive:
+       @for subdir in $(LIB_SUBDIRS); do \
+         if test -d $$subdir ; then \
+           target=`echo $@|$(SED) 's/-libs-recursive//'`; \
+           echo making $$target in $$subdir; \
+           (cd $$subdir && $(MAKE) $$target) || exit 1; \
+         fi ; \
+       done
+