mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@6539 57a11ea4-9604-0410-9ed3-97b8803252fd
23 lines
392 B
Makefile
23 lines
392 B
Makefile
|
|
if GNC_HAVE_GUILE_WWW
|
|
|
|
# Do nothing.
|
|
|
|
else # !GNC_HAVE_GUILE_WWW
|
|
|
|
gncscmdir = ${GNC_SHAREDIR}/guile-modules/www
|
|
gncscm_DATA = cgi.scm http.scm main.scm url.scm
|
|
|
|
noinst_DATA = .scm-links
|
|
|
|
.scm-links:
|
|
rm -f www
|
|
ln -sf . www
|
|
touch .scm-links
|
|
CLEANFILES = www .scm-links
|
|
|
|
endif # GNC_HAVE_GUILE_WWW (else clause)
|
|
|
|
EXTRA_DIST = README README.gnucash wwwcat cgi.scm http.scm main.scm url.scm
|
|
|