/[bison]/bison/lib/Makefile.in
ViewVC logotype

Diff of /bison/lib/Makefile.in

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.5 by akim, Mon Aug 13 14:54:50 2001 UTC revision 1.6 by ra, Tue Aug 21 19:47:13 2001 UTC
# Line 98  AUTOMAKE_OPTIONS = ansi2knr Line 98  AUTOMAKE_OPTIONS = ansi2knr
98    
99  noinst_LIBRARIES = libbison.a  noinst_LIBRARIES = libbison.a
100    
101  INCLUDES = -I.. -I$(srcdir) -I../intl  INCLUDES = -I.. -I$(srcdir) -I../intl -I$(top_srcdir)/src
102    
103  # Heck, we are still using an old version of Automake which does not  # Heck, we are still using an old version of Automake which does not
104  # understand LIBOBJ additions using $objext...  # understand LIBOBJ additions using $objext...
105    
106  EXTRA_DIST = malloc.c realloc.c  EXTRA_DIST = malloc.c realloc.c
107    
108  libbison_a_SOURCES =    error.c error.h   getopt.h getopt.c getopt1.c   obstack.h obstack.c   quote.h quote.c quotearg.h quotearg.c   xalloc.h xmalloc.c xstrdup.c  libbison_a_SOURCES =    error.c error.h   getopt.h getopt.c getopt1.c   hash.h hash.c   obstack.h obstack.c   quote.h quote.c quotearg.h quotearg.c   xalloc.h xmalloc.c xstrdup.c
109    
110    
111  libbison_a_LIBADD = @LIBOBJS@  libbison_a_LIBADD = @LIBOBJS@
# Line 121  CPPFLAGS = @CPPFLAGS@ Line 121  CPPFLAGS = @CPPFLAGS@
121  LDFLAGS = @LDFLAGS@  LDFLAGS = @LDFLAGS@
122  LIBS = @LIBS@  LIBS = @LIBS@
123  ANSI2KNR = @ANSI2KNR@  ANSI2KNR = @ANSI2KNR@
124  libbison_a_OBJECTS =  error$U.o getopt$U.o getopt1$U.o obstack$U.o \  libbison_a_OBJECTS =  error$U.o getopt$U.o getopt1$U.o hash$U.o \
125  quote$U.o quotearg$U.o xmalloc$U.o xstrdup$U.o  obstack$U.o quote$U.o quotearg$U.o xmalloc$U.o xstrdup$U.o
126  AR = ar  AR = ar
127  CFLAGS = @CFLAGS@  CFLAGS = @CFLAGS@
128  COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)  COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
# Line 136  DISTFILES = $(DIST_COMMON) $(SOURCES) $( Line 136  DISTFILES = $(DIST_COMMON) $(SOURCES) $(
136    
137  TAR = tar  TAR = tar
138  GZIP_ENV = --best  GZIP_ENV = --best
139  DEP_FILES =  .deps/error.P .deps/getopt.P .deps/getopt1.P .deps/memchr.P \  DEP_FILES =  .deps/error.P .deps/getopt.P .deps/getopt1.P .deps/hash.P \
140  .deps/obstack.P .deps/quote.P .deps/quotearg.P .deps/stpcpy.P \  .deps/memchr.P .deps/obstack.P .deps/quote.P .deps/quotearg.P \
141  .deps/strndup.P .deps/strnlen.P .deps/strspn.P .deps/xmalloc.P \  .deps/stpcpy.P .deps/strndup.P .deps/strnlen.P .deps/strspn.P \
142  .deps/xstrdup.P  .deps/xmalloc.P .deps/xstrdup.P
143  SOURCES = $(libbison_a_SOURCES)  SOURCES = $(libbison_a_SOURCES)
144  OBJECTS = $(libbison_a_OBJECTS)  OBJECTS = $(libbison_a_OBJECTS)
145    
# Line 213  getopt_.c: getopt.c $(ANSI2KNR) Line 213  getopt_.c: getopt.c $(ANSI2KNR)
213          $(CPP) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) `if test -f $(srcdir)/getopt.c; then echo $(srcdir)/getopt.c; else echo getopt.c; fi` | sed 's/^# \([0-9]\)/#line \1/' | $(ANSI2KNR) > getopt_.c          $(CPP) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) `if test -f $(srcdir)/getopt.c; then echo $(srcdir)/getopt.c; else echo getopt.c; fi` | sed 's/^# \([0-9]\)/#line \1/' | $(ANSI2KNR) > getopt_.c
214  getopt1_.c: getopt1.c $(ANSI2KNR)  getopt1_.c: getopt1.c $(ANSI2KNR)
215          $(CPP) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) `if test -f $(srcdir)/getopt1.c; then echo $(srcdir)/getopt1.c; else echo getopt1.c; fi` | sed 's/^# \([0-9]\)/#line \1/' | $(ANSI2KNR) > getopt1_.c          $(CPP) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) `if test -f $(srcdir)/getopt1.c; then echo $(srcdir)/getopt1.c; else echo getopt1.c; fi` | sed 's/^# \([0-9]\)/#line \1/' | $(ANSI2KNR) > getopt1_.c
216    hash_.c: hash.c $(ANSI2KNR)
217            $(CPP) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) `if test -f $(srcdir)/hash.c; then echo $(srcdir)/hash.c; else echo hash.c; fi` | sed 's/^# \([0-9]\)/#line \1/' | $(ANSI2KNR) > hash_.c
218  memchr_.c: memchr.c $(ANSI2KNR)  memchr_.c: memchr.c $(ANSI2KNR)
219          $(CPP) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) `if test -f $(srcdir)/memchr.c; then echo $(srcdir)/memchr.c; else echo memchr.c; fi` | sed 's/^# \([0-9]\)/#line \1/' | $(ANSI2KNR) > memchr_.c          $(CPP) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) `if test -f $(srcdir)/memchr.c; then echo $(srcdir)/memchr.c; else echo memchr.c; fi` | sed 's/^# \([0-9]\)/#line \1/' | $(ANSI2KNR) > memchr_.c
220  obstack_.c: obstack.c $(ANSI2KNR)  obstack_.c: obstack.c $(ANSI2KNR)
# Line 233  xmalloc_.c: xmalloc.c $(ANSI2KNR) Line 235  xmalloc_.c: xmalloc.c $(ANSI2KNR)
235          $(CPP) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) `if test -f $(srcdir)/xmalloc.c; then echo $(srcdir)/xmalloc.c; else echo xmalloc.c; fi` | sed 's/^# \([0-9]\)/#line \1/' | $(ANSI2KNR) > xmalloc_.c          $(CPP) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) `if test -f $(srcdir)/xmalloc.c; then echo $(srcdir)/xmalloc.c; else echo xmalloc.c; fi` | sed 's/^# \([0-9]\)/#line \1/' | $(ANSI2KNR) > xmalloc_.c
236  xstrdup_.c: xstrdup.c $(ANSI2KNR)  xstrdup_.c: xstrdup.c $(ANSI2KNR)
237          $(CPP) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) `if test -f $(srcdir)/xstrdup.c; then echo $(srcdir)/xstrdup.c; else echo xstrdup.c; fi` | sed 's/^# \([0-9]\)/#line \1/' | $(ANSI2KNR) > xstrdup_.c          $(CPP) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) `if test -f $(srcdir)/xstrdup.c; then echo $(srcdir)/xstrdup.c; else echo xstrdup.c; fi` | sed 's/^# \([0-9]\)/#line \1/' | $(ANSI2KNR) > xstrdup_.c
238  alloca_.o error_.o getopt_.o getopt1_.o memchr_.o obstack_.o quote_.o \  alloca_.o error_.o getopt_.o getopt1_.o hash_.o memchr_.o obstack_.o \
239  quotearg_.o stpcpy_.o strndup_.o strnlen_.o strspn_.o xmalloc_.o \  quote_.o quotearg_.o stpcpy_.o strndup_.o strnlen_.o strspn_.o \
240  xstrdup_.o : $(ANSI2KNR)  xmalloc_.o xstrdup_.o : $(ANSI2KNR)
241    
242  tags: TAGS  tags: TAGS
243    

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26