1#
2# $Id$
3#
4# Copyright (C) 2011, Michael Vacek
5#
6# This program is free software; you can redistribute it and/or
7# modify it under the terms of the GNU General Public License
8# as published by the Free Software Foundation; either version 2
9# of the License, or (at your option) any later version.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program; if not, write to the Free Software
18# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19# 02111-1307, USA.
20#
21# Written by Michael Vacek <michael.vacek@gmail.com>, 2011.
22#
23
24include $(top_srcdir)/Makefile.rules
25
26AM_YFLAGS = -d
27
28OBJEXT = lo
29noinst_LTLIBRARIES = \
30    libstapl.la
31
32libstapl_la_SOURCES = \
33    jamexec.c \
34    jamnote.c \
35    jamcrc.c \
36    jamsym.c \
37    jamstack.c \
38    jamheap.c \
39    jamarray.c \
40    jamcomp.c \
41    jamjtag.c \
42    jamexp.c \
43    jamexec.h \
44    jamsym.h \
45    jamstack.h \
46    jamheap.h \
47    jamarray.h \
48    jamcomp.h \
49    jamjtag.h \
50    jamutil.h \
51    jamexp.h \
52    jamexprt.h \
53    jamdefs.h \
54    jamytab.h \
55    stapl.c
56
57AM_CFLAGS = $(WARNINGCFLAGS)
58
59