1# Makefile [Makefile.am] - for tidy - HTML parser and pretty printer
2#
3#  CVS Info :
4#
5#     $Author: iccir $ 
6#     $Date: 2007/01/30 23:46:50 $ 
7#     $Revision: 1.3 $ 
8#
9#  Copyright (c) 1998-2006 World Wide Web Consortium
10#  (Massachusetts Institute of Technology, European Research 
11#  Consortium for Informatics and Mathematics, Keio University).
12#  All Rights Reserved.
13#
14#  Contributing Author(s):
15#
16#     Dave Raggett <dsr@w3.org>
17#     Terry Teague <terry_teague@users.sourceforge.net>
18#     Pradeep Padala<ppadala@users.sourceforge.net>
19#
20#  The contributing author(s) would like to thank all those who
21#  helped with testing, bug fixes, and patience.  This wouldn't
22#  have been possible without all of you.
23#
24#  COPYRIGHT NOTICE:
25#
26#  This software and documentation is provided "as is," and
27#  the copyright holders and contributing author(s) make no
28#  representations or warranties, express or implied, including
29#  but not limited to, warranties of merchantability or fitness
30#  for any particular purpose or that the use of the software or
31#  documentation will not infringe any third party patents,
32#  copyrights, trademarks or other rights. 
33#
34#  The copyright holders and contributing author(s) will not be
35#  liable for any direct, indirect, special or consequential damages
36#  arising out of any use of the software or documentation, even if
37#  advised of the possibility of such damage.
38#
39#  Permission is hereby granted to use, copy, modify, and distribute
40#  this source code, or portions hereof, documentation and executables,
41#  for any purpose, without fee, subject to the following restrictions:
42#
43#  1. The origin of this source code must not be misrepresented.
44#  2. Altered versions must be plainly marked as such and must
45#     not be misrepresented as being the original source.
46#  3. This Copyright notice may not be removed or altered from any
47#     source or altered source distribution.
48# 
49#  The copyright holders and contributing author(s) specifically
50#  permit, without fee, and encourage the use of this source code
51#  as a component for supporting the Hypertext Markup Language in
52#  commercial products. If you use this source code in a product,
53#  acknowledgment is not required but would be appreciated.
54#
55
56CFLAGS = @CFLAGS@ @WARNING_CFLAGS@
57
58INCLUDES = -I$(top_srcdir)/include
59
60lib_LTLIBRARIES = libtidy.la
61
62libtidy_la_SOURCES = \
63	access.c	attrs.c		istack.c	parser.c \
64	tags.c		entities.c	lexer.c		pprint.c \
65	clean.c		localize.c	config.c	alloc.c \
66	attrask.c	attrdict.c	attrget.c	buffio.c \
67	fileio.c	streamio.c	tagask.c	tmbstr.c \
68	utf8.c		tidylib.c	mappedio.c
69
70libtidy_la_LDFLAGS = \
71	-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
72	-release $(LT_RELEASE) -no-undefined -export-dynamic
73
74HFILES = \
75	access.h	attrdict.h	attrs.h		clean.h \
76	config.h	entities.h	fileio.h 	forward.h \
77	lexer.h		mappedio.h	message.h	parser.h \
78	pprint.h	streamio.h	tags.h		tmbstr.h \
79	utf8.h		tidy-int.h	version.h
80
81EXTRA_DIST = $(HFILES)
82