You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.4 KiB
Makefile

#
# $Id$
#
# 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.
#
# Written by A. Laeuger <arniml@sourceforge.net>, 2007.
#
include $(top_srcdir)/Makefile.rules
AM_YFLAGS = -d
noinst_LTLIBRARIES = \
libsvf.la \
libsvf_flex.la
libsvf_la_SOURCES = \
svf_bison.y \
svf.h \
svf.c
libsvf_flex_la_SOURCES = \
svf_flex.l
AM_CFLAGS = $(WARNINGCFLAGS)
# additional dependencies
# - *_flex files must be processed after their *_bison counterparts
# to ensure that *_bison.h is present
# - we use variables to workaround automake rule/dependency limitations
SVF_BISON_OBJS = libsvf_flex_la-svf_flex.lo svf.lo
$(SVF_BISON_OBJS): svf_bison.h
svf_bison.h: svf_bison.c ; @true
MAINTAINERCLEANFILES = \
svf_bison.c \
svf_bison.h \
svf_flex.c