################################################################################
#
# Copyright (c) 2000, Connex, Inc.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# 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
# Library General Public License for more details.
#
# You should have received a copy of the GNU Library General Public
# License along with this program; if not, write to the Free
# Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
# See 'License' file for License information.
#
# Filename:      makefile
#
# Description:   makefile makes the xml2text program
#
# Notations:     
#
# Author:         Adam Potolsky (speaker@potolsky.com)
#
# Revision History:
#   12/03/00   Adam -- Creation -- Version 0.1
#     This is the first released version. Hope it is useful.
#
################################################################################
# Various local variables. 

CC=gcc
CFLAGS=-DLINUX_OS -Wall -g
LIBS= 

xml2text: xml2text.o
	$(CC) $(CFLAGS) $(LIBS) xml2text.o -o xml2text

xml2text.o: xml2text.c
	$(CC) $(CFLAGS) $(LIBS) -O -c -fPIC xml2text.c

clean:
	rm -f xml2text xml2text.o

