Blame Makefile.am

Packit Service 2e9770
## Makefile.am -- Process this file with automake to produce Makefile.in
Packit Service 2e9770
##
Packit Service 2e9770
## Copyright (C) 2008, 2010, 2011, 2012, 2013, 2014 INRIA
Packit Service 2e9770
##
Packit Service 2e9770
## This file is part of GNU MPC.
Packit Service 2e9770
##
Packit Service 2e9770
## GNU MPC is free software; you can redistribute it and/or modify it under
Packit Service 2e9770
## the terms of the GNU Lesser General Public License as published by the
Packit Service 2e9770
## Free Software Foundation; either version 3 of the License, or (at your
Packit Service 2e9770
## option) any later version.
Packit Service 2e9770
##
Packit Service 2e9770
## GNU MPC is distributed in the hope that it will be useful, but WITHOUT ANY
Packit Service 2e9770
## WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
Packit Service 2e9770
## FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
Packit Service 2e9770
## more details.
Packit Service 2e9770
##
Packit Service 2e9770
## You should have received a copy of the GNU Lesser General Public License
Packit Service 2e9770
## along with this program. If not, see http://www.gnu.org/licenses/ .
Packit Service 2e9770
Packit Service 2e9770
ACLOCAL_AMFLAGS = -I m4
Packit Service 2e9770
Packit Service 2e9770
# version number for distribution tarball
Packit Service 2e9770
# VERSION = @VERSION@@GITVERSION@ # for development version
Packit Service 2e9770
VERSION = @VERSION@
Packit Service 2e9770
Packit Service 2e9770
SUBDIRS = src tests doc tools
Packit Service 2e9770
Packit Service 2e9770
EXTRA_HEADERS = src/mpc-log.h
Packit Service 2e9770
include_HEADERS = src/mpc.h @MPC_LOG_H@
Packit Service 2e9770
EXTRA_DIST = doc/fdl-1.3.texi src/mpc-log.h Makefile.vc
Packit Service 2e9770
Packit Service 2e9770
bench :
Packit Service 2e9770
	cd tools/bench && $(MAKE) $(AM_MAKEFLAGS) bench
Packit Service 2e9770