Skip to content

Commit

Permalink
Patch from Frederic be able to build CDSware out of its source tree.
Browse files Browse the repository at this point in the history
  • Loading branch information
tiborsimko committed Jul 15, 2004
1 parent 189aae0 commit cfbcd08
Show file tree
Hide file tree
Showing 73 changed files with 110 additions and 101 deletions.
18 changes: 9 additions & 9 deletions Makefile.am
Expand Up @@ -65,7 +65,7 @@ uninstall-local:
rm -rf @prefix@/var

create-tables: local-dbexec local-tabfill
./modules/miscutil/bin/dbexec < ./modules/miscutil/sql/tabcreate.sql
./modules/miscutil/bin/dbexec < $(top_srcdir)/modules/miscutil/sql/tabcreate.sql
./modules/miscutil/bin/dbexec < ./modules/miscutil/sql/tabfill.sql

update-v0.3.0-tables update-v0.3.1-tables: local-dbexec
Expand All @@ -78,12 +78,12 @@ update-v0.3.0-tables update-v0.3.1-tables: local-dbexec
echo "INSERT INTO accACTION (id,name,description,allowedkeywords,optional) VALUES (NULL,'cfgbibrank','configure BibRank','','no');" | ./modules/miscutil/bin/dbexec

drop-tables: local-dbexec
./modules/miscutil/bin/dbexec < ./modules/miscutil/sql/tabdrop.sql
./modules/miscutil/bin/dbexec < $(srcdir)/modules/miscutil/sql/tabdrop.sql

local-dbexec: ./modules/miscutil/bin/dbexec.wml
local-dbexec: $(srcdir)/modules/miscutil/bin/dbexec.wml
(cd ./modules/miscutil/bin; make)

local-tabfill: ./modules/miscutil/sql/tabfill.sql.wml
local-tabfill: $(srcdir)/modules/miscutil/sql/tabfill.sql.wml
(cd ./modules/miscutil/sql; make)

create-demo-site: install
Expand Down Expand Up @@ -116,9 +116,9 @@ create-demo-site: install
@echo "***********************************************************************"

load-demo-records: install
${prefix}/bin/dbexec < ./modules/miscutil/sql/tabbibclean.sql
${prefix}/bin/dbexec < $(srcdir)/modules/miscutil/sql/tabbibclean.sql
echo "TRUNCATE schTASK;" | ${prefix}/bin/dbexec
${prefix}/bin/bibupload -i ./modules/miscutil/demo/demobibdata.xml
${prefix}/bin/bibupload -i $(srcdir)/modules/miscutil/demo/demobibdata.xml
${prefix}/bin/bibupload 1
@echo ""
@echo "***********************************************************************"
Expand Down Expand Up @@ -155,8 +155,8 @@ load-demo-records: install
@echo "***********************************************************************"

drop-demo-site: install
./modules/miscutil/bin/dbexec < ./modules/miscutil/sql/tabdrop.sql
./modules/miscutil/bin/dbexec < ./modules/miscutil/sql/tabcreate.sql
./modules/miscutil/bin/dbexec < $(srcdir)/modules/miscutil/sql/tabdrop.sql
./modules/miscutil/bin/dbexec < $(srcdir)/modules/miscutil/sql/tabcreate.sql
./modules/miscutil/bin/dbexec < ./modules/miscutil/sql/tabfill.sql
echo "TRUNCATE schTASK;" | ${prefix}/bin/dbexec
@echo ""
Expand All @@ -172,7 +172,7 @@ drop-demo-site: install
@echo "***************************************************************"

remove-demo-records: install
./modules/miscutil/bin/dbexec < ./modules/miscutil/sql/tabbibclean.sql
./modules/miscutil/bin/dbexec < $(srcdir)/modules/miscutil/sql/tabbibclean.sql
echo "TRUNCATE schTASK;" | ${prefix}/bin/dbexec
@echo ""
@echo "***********************************************************************"
Expand Down
11 changes: 10 additions & 1 deletion configure.ac
Expand Up @@ -82,6 +82,9 @@ if test -z "$WML"; then
Available from <http://www.engelschall.com/sw/wml/>.])
fi

## Set option -c in WML so that it can work from a separate build tree
WML="${WML} -c"

## Check for MySQL client:
AC_PATH_PROG(MYSQL, mysql)
if test -z "$MYSQL"; then
Expand All @@ -107,7 +110,7 @@ fi

## Check for Python version and modules:
AC_MSG_CHECKING(for required Python modules)
$PYTHON configure-tests.py
$PYTHON ${srcdir}/configure-tests.py
if test $? -ne 0; then
AC_MSG_ERROR([Please fix the above Python problems before continuing.])
fi
Expand Down Expand Up @@ -477,6 +480,12 @@ AC_CONFIG_FILES([Makefile \
modules/miscutil/sql/Makefile \
])

AC_CONFIG_COMMANDS(.wmlrc, [
cat<<EOF>.wmlrc
-Iconfig -I${srcdir}/config
EOF
])

## Finally, write output files:
AC_OUTPUT

Expand Down
2 changes: 1 addition & 1 deletion modules/bibconvert/bin/Makefile.am
Expand Up @@ -23,6 +23,6 @@ EXTRA_DIST = $(wildcard *.wml)

CLEANFILES = $(bin_SCRIPTS) *~ *.tmp bibconvertc

%: %.wml ../../../config/config.wml ../../../config/configbis.wml ../../../config/cdswmllib.wml
%: %.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml $(top_srcdir)/config/cdswmllib.wml
$(WML) -o $@ $<
chmod u+x $@
2 changes: 1 addition & 1 deletion modules/bibconvert/doc/admin/Makefile.am
Expand Up @@ -28,5 +28,5 @@ EXTRA_DIST = $(wildcard *.wml) $(sample_DATA)

CLEANFILES = $(doc_DATA) *~ *.tmp

%.html: %.html.wml ../../../../config/config.wml ../../../../config/configbis.wml
%.html: %.html.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml
$(WML) -o\(ALL-LANG_*\)+LANG_EN:$@ $<
2 changes: 1 addition & 1 deletion modules/bibedit/doc/admin/Makefile.am
Expand Up @@ -25,5 +25,5 @@ EXTRA_DIST = $(wildcard *.wml)

CLEANFILES = $(doc_DATA) *~ *.tmp

%.html: %.html.wml ../../../../config/config.wml ../../../../config/configbis.wml
%.html: %.html.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml
$(WML) -o\(ALL-LANG_*\)+LANG_EN:$@ $<
2 changes: 1 addition & 1 deletion modules/bibedit/lib/Makefile.am
Expand Up @@ -24,5 +24,5 @@ EXTRA_DIST = $(wildcard *.wml)

CLEANFILES = $(pylib_DATA) *~ *.tmp *.pyc

%.py: %.py.wml ../../../config/config.wml ../../../config/configbis.wml
%.py: %.py.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml
$(WML) -o $@ $<
2 changes: 1 addition & 1 deletion modules/bibformat/bin/Makefile.am
Expand Up @@ -23,6 +23,6 @@ EXTRA_DIST = $(wildcard *.wml)

CLEANFILES = $(bin_SCRIPTS) *~ *.tmp

%: %.wml ../../../config/config.wml ../../../config/configbis.wml ../../../config/cdswmllib.wml
%: %.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml $(top_srcdir)/config/cdswmllib.wml
$(WML) -o $@ $<
chmod u+x $@
2 changes: 1 addition & 1 deletion modules/bibformat/doc/admin/Makefile.am
Expand Up @@ -26,5 +26,5 @@ EXTRA_DIST = $(wildcard *.wml)

CLEANFILES = $(doc_DATA) *~ *.tmp

%.html: %.html.wml ../../../../config/config.wml ../../../../config/configbis.wml
%.html: %.html.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml
$(WML) -o\(ALL-LANG_*\)+LANG_EN:$@ $<
2 changes: 1 addition & 1 deletion modules/bibformat/lib/common/Makefile.am
Expand Up @@ -25,5 +25,5 @@ EXTRA_DIST = $(wildcard *.wml)

CLEANFILES = $(wildcard *.php) *~ *.tmp

%.php: %.php.wml ../../../../config/config.wml ../../../../config/configbis.wml ../../../../config/cdspage.wml
%.php: %.php.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml $(top_srcdir)/config/cdspage.wml
$(WML) -o $@ $<
2 changes: 1 addition & 1 deletion modules/bibformat/lib/core/Makefile.am
Expand Up @@ -25,5 +25,5 @@ EXTRA_DIST = $(wildcard *.wml)

CLEANFILES = $(wildcard *.php) *~ *.tmp

%.php: %.php.wml ../../../../config/config.wml ../../../../config/configbis.wml ../../../../config/cdspage.wml
%.php: %.php.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml $(top_srcdir)/config/cdspage.wml
$(WML) -o $@ $<
2 changes: 1 addition & 1 deletion modules/bibformat/web/Makefile.am
Expand Up @@ -28,5 +28,5 @@ EXTRA_DIST = $(wildcard *.wml)

CLEANFILES = $(wildcard *.php) *~ *.tmp

%.php: %.php.wml ../../../config/config.wml ../../../config/configbis.wml ../../../config/cdspage.wml
%.php: %.php.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml $(top_srcdir)/config/cdspage.wml
$(WML) -o $@ $<
2 changes: 1 addition & 1 deletion modules/bibformat/web/admin/Makefile.am
Expand Up @@ -26,5 +26,5 @@ EXTRA_DIST = $(wildcard *.wml)

CLEANFILES = $(wildcard *.php) *~ *.tmp

%.php: %.php.wml ../../../../config/config.wml ../../../../config/configbis.wml ../../../../config/cdspage.wml ../../../../config/cdsnavbar.wml
%.php: %.php.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml $(top_srcdir)/config/cdspage.wml $(top_srcdir)/config/cdsnavbar.wml
$(WML) -o\(ALL-LANG_*\)+LANG_EN:$@ $<
2 changes: 1 addition & 1 deletion modules/bibharvest/bin/Makefile.am
Expand Up @@ -23,6 +23,6 @@ EXTRA_DIST = $(wildcard *.wml)

CLEANFILES = $(bin_SCRIPTS) *~ *.tmp bibharvestc

%: %.wml ../../../config/config.wml ../../../config/configbis.wml ../../../config/cdswmllib.wml
%: %.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml $(top_srcdir)/config/cdswmllib.wml
$(WML) -o $@ $<
chmod u+x $@
2 changes: 1 addition & 1 deletion modules/bibharvest/doc/admin/Makefile.am
Expand Up @@ -24,5 +24,5 @@ EXTRA_DIST = $(wildcard *.wml)

CLEANFILES = $(doc_DATA) *~ *.tmp

%.html: %.html.wml ../../../../config/config.wml ../../../../config/configbis.wml
%.html: %.html.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml
$(WML) -o\(ALL-LANG_*\)+LANG_EN:$@ $<
2 changes: 1 addition & 1 deletion modules/bibharvest/lib/Makefile.am
Expand Up @@ -24,5 +24,5 @@ EXTRA_DIST = $(wildcard *.wml)

CLEANFILES = $(pylib_DATA) *~ *.tmp *.pyc

%.py: %.py.wml ../../../config/config.wml ../../../config/configbis.wml
%.py: %.py.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml
$(WML) -o $@ $<
4 changes: 2 additions & 2 deletions modules/bibharvest/web/Makefile.am
Expand Up @@ -25,9 +25,9 @@ EXTRA_DIST = $(wildcard *.wml)

CLEANFILES = $(bin_SCRIPTS) $(webapp_DATA) *~ *.tmp search.pyc

%.py: %.py.wml ../../../config/config.wml ../../../config/configbis.wml
%.py: %.py.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml
$(WML) -o $@ $<

%: %.wml ../../../config/config.wml ../../../config/configbis.wml
%: %.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml
$(WML) -o $@ $<
chmod u+x $@
2 changes: 1 addition & 1 deletion modules/bibindex/bin/Makefile.am
Expand Up @@ -23,6 +23,6 @@ EXTRA_DIST = $(wildcard *.wml)

CLEANFILES = $(bin_SCRIPTS) *~ *.tmp bibindexc

%: %.wml ../../../config/config.wml ../../../config/configbis.wml ../../../config/cdswmllib.wml
%: %.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml $(top_srcdir)/config/cdswmllib.wml
$(WML) -o $@ $<
chmod u+x $@
2 changes: 1 addition & 1 deletion modules/bibindex/doc/admin/Makefile.am
Expand Up @@ -24,5 +24,5 @@ EXTRA_DIST = $(wildcard *.wml)

CLEANFILES = $(doc_DATA) *~ *.tmp

%.html: %.html.wml ../../../../config/config.wml ../../../../config/configbis.wml
%.html: %.html.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml
$(WML) -o\(ALL-LANG_*\)+LANG_EN:$@ $<
2 changes: 1 addition & 1 deletion modules/bibindex/lib/Makefile.am
Expand Up @@ -25,5 +25,5 @@ EXTRA_DIST = $(wildcard *.wml)

CLEANFILES = $(pylib_DATA) *~ *.tmp *.pyc

%.py: %.py.wml ../../../config/config.wml ../../../config/configbis.wml
%.py: %.py.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml
$(WML) -o $@ $<
4 changes: 2 additions & 2 deletions modules/bibindex/web/admin/Makefile.am
Expand Up @@ -25,8 +25,8 @@ EXTRA_DIST = $(wildcard *.wml)

CLEANFILES = $(bin_SCRIPTS) $(webapp_DATA) *~ *.tmp search.pyc

%.py: %.py.wml ../../../../config/config.wml ../../../../config/configbis.wml
%.py: %.py.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml
$(WML) -o $@ $<

%.html: %.html.wml ../../../../config/config.wml ../../../../config/configbis.wml
%.html: %.html.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml
$(WML) -o\(ALL-LANG_*\)+LANG_EN:$@ $<
2 changes: 1 addition & 1 deletion modules/bibrank/bin/Makefile.am
Expand Up @@ -23,6 +23,6 @@ EXTRA_DIST = $(wildcard *.wml)

CLEANFILES = $(bin_SCRIPTS) *~ *.tmp bibrankc bibrankgkbc vectorrankc

%: %.wml ../../../config/config.wml ../../../config/configbis.wml ../../../config/cdswmllib.wml
%: %.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml $(top_srcdir)/config/cdswmllib.wml
$(WML) -o $@ $<
chmod u+x $@
2 changes: 1 addition & 1 deletion modules/bibrank/doc/admin/Makefile.am
Expand Up @@ -25,5 +25,5 @@ EXTRA_DIST = $(wildcard *.wml)

CLEANFILES = $(doc_DATA) *~ *.tmp

%.html: %.html.wml ../../../../config/config.wml ../../../../config/configbis.wml
%.html: %.html.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml
$(WML) -o\(ALL-LANG_*\)+LANG_EN:$@ $<
2 changes: 1 addition & 1 deletion modules/bibrank/doc/hacking/Makefile.am
Expand Up @@ -25,5 +25,5 @@ EXTRA_DIST = $(wildcard *.wml)

CLEANFILES = $(doc_DATA) *~ *.tmp

%.html: %.html.wml ../../../../config/config.wml ../../../../config/configbis.wml
%.html: %.html.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml
$(WML) -o\(ALL-LANG_*\)+LANG_EN:$@ $<
4 changes: 2 additions & 2 deletions modules/bibrank/etc/Makefile.am
Expand Up @@ -26,8 +26,8 @@ EXTRA_DIST = $(wildcard *.wml)

CLEANFILES = $(wildcard *.kb) $(wildcard *.cfg) *~ *.tmp

%.kb: %.kb.wml ../../../config/config.wml ../../../config/configbis.wml ../../../config/cdspage.wml
%.kb: %.kb.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml $(top_srcdir)/config/cdspage.wml
$(WML) -o $@ $<

%.cfg: %.cfg.wml ../../../config/config.wml ../../../config/configbis.wml ../../../config/cdspage.wml
%.cfg: %.cfg.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml $(top_srcdir)/config/cdspage.wml
$(WML) -o $@ $<
2 changes: 1 addition & 1 deletion modules/bibrank/lib/Makefile.am
Expand Up @@ -24,5 +24,5 @@ EXTRA_DIST = $(wildcard *.wml)

CLEANFILES = $(pylib_DATA) *~ *.tmp *.pyc

%.py: %.py.wml ../../../config/config.wml ../../../config/configbis.wml
%.py: %.py.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml
$(WML) -o $@ $<
4 changes: 2 additions & 2 deletions modules/bibrank/web/admin/Makefile.am
Expand Up @@ -25,8 +25,8 @@ EXTRA_DIST = $(wildcard *.wml)

CLEANFILES = $(webapp_DATA) *~ *.tmp

%.py: %.py.wml ../../../../config/config.wml ../../../../config/configbis.wml
%.py: %.py.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml
$(WML) -o $@ $<

%.html: %.html.wml ../../../../config/config.wml ../../../../config/configbis.wml
%.html: %.html.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml
$(WML) -o\(ALL-LANG_*\)+LANG_EN:$@ $<
2 changes: 1 addition & 1 deletion modules/bibsched/bin/Makefile.am
Expand Up @@ -23,6 +23,6 @@ EXTRA_DIST = $(wildcard *.wml)

CLEANFILES = $(bin_SCRIPTS) *~ *.tmp bibtaskexc

%: %.wml ../../../config/config.wml ../../../config/configbis.wml ../../../config/cdswmllib.wml
%: %.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml $(top_srcdir)/config/cdswmllib.wml
$(WML) -o $@ $<
chmod u+x $@
2 changes: 1 addition & 1 deletion modules/bibsched/doc/admin/Makefile.am
Expand Up @@ -24,5 +24,5 @@ EXTRA_DIST = $(wildcard *.wml)

CLEANFILES = $(doc_DATA) *~ *.tmp

%.html: %.html.wml ../../../../config/config.wml ../../../../config/configbis.wml
%.html: %.html.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml
$(WML) -o\(ALL-LANG_*\)+LANG_EN:$@ $<
2 changes: 1 addition & 1 deletion modules/bibupload/bin/Makefile.am
Expand Up @@ -23,6 +23,6 @@ EXTRA_DIST = $(wildcard *.wml)

CLEANFILES = $(bin_SCRIPTS) *~ *.tmp

%: %.wml ../../../config/config.wml ../../../config/configbis.wml
%: %.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml
$(WML) -o $@ $<
chmod u+x $@
2 changes: 1 addition & 1 deletion modules/bibupload/doc/admin/Makefile.am
Expand Up @@ -24,5 +24,5 @@ EXTRA_DIST = $(wildcard *.wml)

CLEANFILES = $(doc_DATA) *~ *.tmp

%.html: %.html.wml ../../../../config/config.wml ../../../../config/configbis.wml
%.html: %.html.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml
$(WML) -o\(ALL-LANG_*\)+LANG_EN:$@ $<
2 changes: 1 addition & 1 deletion modules/miscutil/bin/Makefile.am
Expand Up @@ -27,6 +27,6 @@ install-data-local:

CLEANFILES = $(bin_SCRIPTS) $(noinst_SCRIPTS) *~ *.tmp

%: %.wml ../../../config/config.wml ../../../config/configbis.wml ../../../config/cdswmllib.wml
%: %.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml $(top_srcdir)/config/cdswmllib.wml
$(WML) -o $@ $<
chmod u+x $@
2 changes: 1 addition & 1 deletion modules/miscutil/demo/Makefile.am
Expand Up @@ -23,5 +23,5 @@ EXTRA_DIST = $(wildcard *.wml) demobibdata.xml

CLEANFILES = $(noinst_DATA) *~ *.tmp democfgdata.sql

%: %.wml ../../../config/config.wml ../../../config/configbis.wml
%: %.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml
$(WML) -o $@ $<
8 changes: 4 additions & 4 deletions modules/miscutil/lib/Makefile.am
Expand Up @@ -27,10 +27,10 @@ EXTRA_DIST = $(wildcard *.wml)

CLEANFILES = $(pylib_DATA) $(phplib_DATA) *~ *.tmp *.pyc

%.py: %.py.wml ../../../config/config.wml ../../../config/configbis.wml \
../../../config/messages.wml ../../../config/cdswmllib.wml
%.py: %.py.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml \
$(top_srcdir)/config/messages.wml $(top_srcdir)/config/cdswmllib.wml
$(WML) -o $@ $<

%.php: %.php.wml ../../../config/config.wml ../../../config/configbis.wml \
../../../config/messages.wml ../../../config/cdswmllib.wml
%.php: %.php.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml \
$(top_srcdir)/config/messages.wml $(top_srcdir)/config/cdswmllib.wml
$(WML) -o $@ $<
2 changes: 1 addition & 1 deletion modules/miscutil/sql/Makefile.am
Expand Up @@ -23,5 +23,5 @@ EXTRA_DIST = $(wildcard *.wml) tabcreate.sql tabdrop.sql tabbibclean.sql

CLEANFILES = $(noinst_DATA) *~ *.tmp tabfill.sql

%: %.wml ../../../config/config.wml ../../../config/configbis.wml
%: %.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml
$(WML) -o $@ $<
2 changes: 1 addition & 1 deletion modules/webaccess/bin/Makefile.am
Expand Up @@ -23,6 +23,6 @@ EXTRA_DIST = $(wildcard *.wml)

CLEANFILES = $(bin_SCRIPTS) *~ *.tmp authactionc

%: %.wml ../../../config/config.wml ../../../config/configbis.wml ../../../config/cdswmllib.wml
%: %.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml $(top_srcdir)/config/cdswmllib.wml
$(WML) -o $@ $<
chmod u+x $@
2 changes: 1 addition & 1 deletion modules/webaccess/doc/admin/Makefile.am
Expand Up @@ -25,5 +25,5 @@ EXTRA_DIST = $(wildcard *.wml)

CLEANFILES = $(doc_DATA) *~ *.tmp

%.html: %.html.wml ../../../../config/config.wml ../../../../config/configbis.wml
%.html: %.html.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml
$(WML) -o\(ALL-LANG_*\)+LANG_EN:$@ $<
2 changes: 1 addition & 1 deletion modules/webaccess/doc/hacking/Makefile.am
Expand Up @@ -25,5 +25,5 @@ EXTRA_DIST = $(wildcard *.wml)

CLEANFILES = $(doc_DATA) *~ *.tmp

%.html: %.html.wml ../../../../config/config.wml ../../../../config/configbis.wml
%.html: %.html.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml
$(WML) -o\(ALL-LANG_*\)+LANG_EN:$@ $<
2 changes: 1 addition & 1 deletion modules/webaccess/lib/Makefile.am
Expand Up @@ -24,5 +24,5 @@ EXTRA_DIST = $(wildcard *.wml)

CLEANFILES = $(pylib_DATA) *~ *.tmp *.pyc

%.py: %.py.wml ../../../config/config.wml ../../../config/configbis.wml
%.py: %.py.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml
$(WML) -o $@ $<

0 comments on commit cfbcd08

Please sign in to comment.