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
|
# $Id: Makefile.am,v 1.2 2001/09/20 23:12:49 chipx86 Exp $
HTML_FILES = \
doxygen.css \
doxygen.gif \
alt_8h.html \
alt_8h-source.html \
attribute_8h.html \
attribute_8h-source.html \
bag_8h.html \
bag_8h-source.html \
description_8h.html \
description_8h-source.html \
element_8h.html \
Element_8h.html \
element_8h-source.html \
Element_8h-source.html \
files.html \
globals.html \
gnurdf_8h.html \
gnurdf_8h-source.html \
index.html \
internal_8h.html \
internal_8h-source.html \
iterator_8h.html \
iterator_8h-source.html \
misc_8h.html \
misc_8h-source.html \
namespace_8h.html \
namespace_8h-source.html \
property_8h.html \
property_8h-source.html \
schema_8h.html \
Schema_8h.html \
schema_8h-source.html \
Schema_8h-source.html \
search_8h.html \
search_8h-source.html \
seq_8h.html \
seq_8h-source.html \
types_8h.html \
types_8h-source.html
.PHONY: files
files:
@files=`ls $(DISTFILES) 2> /dev/null`; \
for p in $$files; do \
echo $$p; \
done
EXTRA_DIST = $(HTML_FILES)
|