1## $Id: Makefile.am,v 1.8 2001/11/10 14:42:43 rlk Exp $
2## Copyright (C) 2000 Roger Leigh
3##
4## This program is free software; you can redistribute it and/or modify
5## it under the terms of the GNU General Public License as published by
6## the Free Software Foundation; either version 2, or (at your option)
7## any later version.
8##
9## This program is distributed in the hope that it will be useful,
10## but WITHOUT ANY WARRANTY; without even the implied warranty of
11## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12## GNU General Public License for more details.
13##
14## You should have received a copy of the GNU General Public License
15## along with this program; if not, write to the Free Software
16## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18## Process this file with automake to produce Makefile.in.
19
20AUTOMAKE_OPTIONS = 1.4 gnu
21
22@SET_MAKE@
23
24MAINT_CHARSET = latin1
25
26
27## Variables
28
29AM_CFLAGS = $(GNUCFLAGS)
30INCLUDES = @INCLUDES@
31
32LFLAGS = -i
33YFLAGS = -d
34
35
36## Programs
37
38noinst_PROGRAMS = printdef
39printdef_SOURCES = printdefl.l printdefy.y printdef.h
40
41printdefl.o: printdefy.o
42printdef.o: printdefy.o
43
44
45## Clean
46
47DISTCLEANFILES = printdefl.c printdefy.c printdefy.h
48MAINTAINERCLEANFILES = Makefile.in
49
50EXTRA_DIST = printdefy.h
51