]> granicus.if.org Git - apache/blobdiff - Makefile.in
Added Spanish translation for manual/misc/password_encryptions.xml.es
[apache] / Makefile.in
index f6fac281321d3554e228b4afb007eff975f2b9e7..85f174a3ddd2dbab2aa26c20a84840a06d0ef30b 100644 (file)
@@ -20,7 +20,8 @@ INSTALL_TARGETS = install-conf install-htdocs install-error install-icons \
 
 CLEAN_TARGETS      = check/apxs check/build/config_vars.mk \
        check/conf/$(PROGRAM_NAME).conf check/conf/magic check/conf/mime.types \
-       check/conf/extra/* check/include/*
+       check/conf/extra/* check/include/* $(testcase_OBJECTS) $(testcase_STUBS) \
+       test/httpdunit.cases test/unit/*.o
 DISTCLEAN_TARGETS  = include/ap_config_auto.h include/ap_config_layout.h \
        include/apache_probes.h \
        modules.c config.cache config.log config.status build/config_vars.mk \
@@ -49,7 +50,7 @@ install-conf:
                if [ -f $$i ] ; then \
                ( \
                        n_lm=`awk 'BEGIN {n=0} /@@LoadModule@@/ {n+=1} END {print n}' < $$i`; \
-                       if test $$n_lm -eq 0 -o "x$(MPM_MODULE)$(DSO_MODULES)" = "x"; then \
+                       if test $$n_lm -eq 0 -o "x$(MPM_MODULES)$(DSO_MODULES)" = "x"; then \
                                sed -e 's#@@ServerRoot@@#$(prefix)#g' \
                                        -e 's#@@Port@@#$(PORT)#g' \
                                        -e 's#@@SSLPort@@#$(SSLPORT)#g' \
@@ -327,7 +328,7 @@ check-conf:
                if [ -f $$i ] ; then \
                ( \
                    n_lm=`awk 'BEGIN {n=0} /@@LoadModule@@/ {n+=1} END {print n}' < $$i`; \
-                   if test $$n_lm -eq 0 -o "x$(MPM_MODULE)$(DSO_MODULES)" = "x"; then \
+                   if test $$n_lm -eq 0 -o "x$(MPM_MODULES)$(DSO_MODULES)" = "x"; then \
                        sed -e 's#@@ServerRoot@@#$(top_builddir)/check#g' \
                            -e 's#@@Port@@#$(PORT)#g' \
                            -e 's#@@SSLPort@@#$(SSLPORT)#g' \
@@ -455,9 +456,8 @@ $(testcase_STUBS): %.tests: %.c
        $(top_srcdir)/build/httpdunit_gen_stubs.pl < "$<" > "$@"
 
 test/httpdunit.cases: $(testcase_SOURCES) | unittest-objdir
-       for t in $^; do \
-           $(top_srcdir)/build/httpdunit_gen_cases.pl < "$$t"; \
-       done > $@
+       cat $^ | $(top_srcdir)/build/httpdunit_gen_cases.pl --declaration > $@
+       cat $^ | $(top_srcdir)/build/httpdunit_gen_cases.pl >> $@
 
 test/httpdunit.lo: test/httpdunit.c test/httpdunit.cases | unittest-objdir