1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
#
# This file is part of the OpenLink Software Virtuoso Open-Source (VOS)
# project.
#
# Copyright (C) 1998-2006 OpenLink Software
#
# This project is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; only version 2 of the License, dated June 1991.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
#
TOP=@TOP@
if WITH_ODS_VAD
nodist_vad_DATA = ods_blog_dav.vad
endif
CLEANFILES = \
*.vad \
make_ods_blog_vad.log \
make_ods_blog_vad.xml \
virtuoso.db \
virtuoso.ini \
virtuoso.lck \
virtuoso.log \
virtuoso.pxa \
virtuoso.tdb \
virtuoso.trx
ods_blog_dav.vad: $(EXTRA_DIST)
PATH="$(TOP)/binsrc/virtuoso:$(TOP)/binsrc/tests:.:$$PATH" PORT=$(PORT) HOME="$(TOP)" HOST=localhost sh ./make_vad.sh
clean-local:
-rm -rf vad
EXTRA_DIST = \
*.sql \
*.vsp \
*.vspx \
make_vad.sh \
public/*.vsp \
public/*.vspx \
public/css/*.css \
public/images/*.gif \
public/images/*.jpg \
public/images/*.png \
public/images/dav_browser/*.png \
public/images/fav.ico \
public/images/smileys/*.gif \
public/scripts/*.js \
templates/*.vspx \
templates/atlantis/*.css \
templates/atlantis/*.vspx \
templates/autumn/*.css \
templates/autumn/*.vspx \
templates/blue_left/*.css \
templates/blue_left/*.vspx \
templates/columns_clean/*.css \
templates/columns_clean/*.vspx \
templates/default/*.css \
templates/default/*.vspx \
templates/modern/*.css \
templates/modern/*.vspx \
templates/openlink/*.css \
templates/openlink/*.vspx \
templates/openlink_classic/*.css \
templates/round_the_corner/*.css \
templates/round_the_corner/*.vspx \
templates/round_the_corner/images/*.gif \
templates/round_wheat/*.css \
templates/round_wheat/*.vspx \
templates/seattle/*.css \
templates/seattle/*.vspx \
templates/spring/*.css \
templates/spring/*.vspx \
templates/squeaky_clean/*.css \
templates/squeaky_clean/*.vspx \
templates/squeaky_clean_2col/*.css \
templates/squeaky_clean_2col/*.vspx \
templates/thin_clean/*.css \
templates/thin_clean/*.vspx \
templates/thin_pastel/*.css \
templates/thin_pastel/*.vspx \
vad_version \
widgets/*.xsl
|