# *****************************************************************************
# Makefile.am : Script de compilation
# Makefile.am : Compilation script
#
#
# getxml : Traducteur XML - XML translator
# Copyright (c) 2001 Philippe Roy
# Auteur - Author : Philippe Roy <ph_roy@toutdoux.org>
#
#
# Ce programme est un logiciel libre ; vous pouvez le redistribuer et/ou le modifier
# sous les termes de la licence publique générale GNU telle qu'elle est publiée par
# la Free Software Foundation ; soit la version 2 de la licence, ou
# (comme vous voulez) toute version ultérieure.
#
# Ce programme est distribué dans l'espoir qu'il sera utile,
# mais SANS AUCUNE GARANTIE ; même sans la garantie de
# COMMERCIALITÉ ou d'ADÉQUATION A UN BUT PARTICULIER. Voir la
# licence publique générale GNU pour plus de détails.
#
# Vous devriez avoir reçu une copie de la licence publique générale GNU
# avec ce programme ; si ce n'est pas le cas, écrivez à la Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
#
# This program 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; 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 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# *****************************************************************************
bin_PROGRAMS = getxml-extract getxml-merge
getxml_extract_SOURCES = getxml-extract.c getxml-extract.h
getxml_merge_SOURCES = getxml-merge.c getxml-merge.h
# *****************************************************************************
# Compilation
# *****************************************************************************
INCLUDES = $(GLIB_CFLAGS) $(XML_CFLAGS)
getxml_extract_LDADD = $(GLIB_LIBS) $(XML_LIBS)
getxml_merge_LDADD = $(GLIB_LIBS) $(XML_LIBS)
syntax highlighted by Code2HTML, v. 0.9.1