Blame support/Makefile.am

Packit 575503
#
Packit 575503
# Makefile.am --- automake input file for gawk
Packit 575503
#
Packit 575503
# Copyright (C) 2000-2016 the Free Software Foundation, Inc.
Packit 575503
#
Packit 575503
# This file is part of GAWK, the GNU implementation of the
Packit 575503
# AWK Programming Language.
Packit 575503
#
Packit 575503
# GAWK is free software; you can redistribute it and/or modify
Packit 575503
# it under the terms of the GNU General Public License as published by
Packit 575503
# the Free Software Foundation; either version 3 of the License, or
Packit 575503
# (at your option) any later version.
Packit 575503
#
Packit 575503
# GAWK is distributed in the hope that it will be useful,
Packit 575503
# but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 575503
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 575503
# GNU General Public License for more details.
Packit 575503
#
Packit 575503
# You should have received a copy of the GNU General Public License
Packit 575503
# along with this program; if not, write to the Free Software
Packit 575503
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
Packit 575503
#
Packit 575503
Packit 575503
## process this file with automake to produce Makefile.in
Packit 575503
Packit 575503
# This insures that make flags get passed down to child makes.
Packit 575503
AM_MAKEFLAGS = 'CFLAGS=$(CFLAGS)' 'LDFLAGS=$(LDFLAGS)'
Packit 575503
Packit 575503
# Stuff to include in the dist that doesn't need it's own
Packit 575503
# Makefile.am files
Packit 575503
EXTRA_DIST = \
Packit 575503
	Makefile.am \
Packit 575503
	Makefile.in \
Packit 575503
	regcomp.c \
Packit 575503
	regex_internal.c \
Packit 575503
	regex_internal.h \
Packit 575503
	regexec.c
Packit 575503
Packit 575503
# what to make and install
Packit 575503
noinst_LIBRARIES = libsupport.a
Packit 575503
libsupport_a_SOURCES = \
Packit 575503
	dfa.c \
Packit 575503
	dfa.h \
Packit 575503
	getopt.c \
Packit 575503
	getopt.h \
Packit 575503
	getopt_int.h \
Packit 575503
	getopt1.c \
Packit 575503
	intprops.h \
Packit 575503
	localeinfo.c \
Packit 575503
	localeinfo.h \
Packit 575503
	random.c \
Packit 575503
	random.h \
Packit 575503
	regex.c \
Packit 575503
	regex.h \
Packit 575503
	verify.h \
Packit 575503
	xalloc.h
Packit 575503
Packit 575503
# For some make's, e.g. OpenBSD, that don't define this
Packit 575503
RM = rm -f
Packit 575503
Packit 575503
DEFS = -DGAWK -DHAVE_CONFIG_H -I"$(srcdir)/.."