~ubuntu-branches/ubuntu/jaunty/plotutils/jaunty

« back to all changes in this revision

Viewing changes to graph/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Floris Bruynooghe
  • Date: 2007-05-10 19:48:54 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070510194854-mrr3lgwzpxd8hovo
Tags: 2.5-2
Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.in generated automatically by automake 1.4 from Makefile.am
 
1
# Makefile.in generated automatically by automake 1.4-p6 from Makefile.am
2
2
 
3
 
# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
 
3
# Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
4
4
# This Makefile.in is free software; the Free Software Foundation
5
5
# gives unlimited permission to copy and/or distribute it,
6
6
# with or without modifications, as long as this notice is preserved.
59
59
POST_UNINSTALL = :
60
60
host_alias = @host_alias@
61
61
host_triplet = @host@
 
62
AR = @AR@
62
63
AS = @AS@
63
64
CC = @CC@
64
65
CXX = @CXX@
 
66
CXXCPP = @CXXCPP@
65
67
DLLTOOL = @DLLTOOL@
 
68
ECHO = @ECHO@
 
69
EGREP = @EGREP@
66
70
EXEEXT = @EXEEXT@
 
71
F77 = @F77@
 
72
GCJ = @GCJ@
 
73
GCJFLAGS = @GCJFLAGS@
 
74
HAVE_LIB = @HAVE_LIB@
67
75
LEX = @LEX@
 
76
LIB = @LIB@
68
77
LIBTOOL = @LIBTOOL@
69
78
LN_S = @LN_S@
70
 
LTALLOCA = @LTALLOCA@
 
79
LTLIB = @LTLIB@
71
80
MAKEINFO = @MAKEINFO@
72
81
OBJDUMP = @OBJDUMP@
 
82
OBJEXT = @OBJEXT@
73
83
PACKAGE = @PACKAGE@
74
84
RANLIB = @RANLIB@
 
85
RC = @RC@
 
86
STRIP = @STRIP@
75
87
VERSION = @VERSION@
76
88
X_BASIC_LIBS = @X_BASIC_LIBS@
77
89
X_CFLAGS = @X_CFLAGS@
108
120
CPPFLAGS = @CPPFLAGS@
109
121
LDFLAGS = @LDFLAGS@
110
122
LIBS = @LIBS@
111
 
graph_OBJECTS =  graph.o misc.o linemode.o reader.o plotter.o fontlist.o
 
123
graph_OBJECTS =  graph.$(OBJEXT) misc.$(OBJEXT) linemode.$(OBJEXT) \
 
124
reader.$(OBJEXT) plotter.$(OBJEXT) fontlist.$(OBJEXT)
112
125
graph_DEPENDENCIES =  ../lib/libcommon.a ../libplot/libplot.la
113
126
graph_LDFLAGS = 
114
127
CFLAGS = @CFLAGS@
123
136
 
124
137
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
125
138
 
126
 
TAR = gtar
 
139
TAR = tar
127
140
GZIP_ENV = --best
128
141
SOURCES = $(graph_SOURCES)
129
142
OBJECTS = $(graph_OBJECTS)
130
143
 
131
144
all: all-redirect
132
145
.SUFFIXES:
133
 
.SUFFIXES: .S .c .lo .o .s
134
 
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) 
 
146
.SUFFIXES: .S .c .lo .o .obj .s
 
147
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4) 
135
148
        cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps graph/Makefile
136
149
 
137
150
Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
167
180
.c.o:
168
181
        $(COMPILE) -c $<
169
182
 
 
183
# FIXME: We should only use cygpath when building on Windows,
 
184
# and only if it is available.
 
185
.c.obj:
 
186
        $(COMPILE) -c `cygpath -w $<`
 
187
 
170
188
.s.o:
171
189
        $(COMPILE) -c $<
172
190
 
175
193
 
176
194
mostlyclean-compile:
177
195
        -rm -f *.o core *.core
 
196
        -rm -f *.$(OBJEXT)
178
197
 
179
198
clean-compile:
180
199
 
224
243
          awk '    { files[$$0] = 1; } \
225
244
               END { for (i in files) print i; }'`; \
226
245
        test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
227
 
          || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags  $$unique $(LISP) -o $$here/TAGS)
 
246
          || (cd $(srcdir) && etags -o $$here/TAGS $(ETAGS_ARGS) $$tags  $$unique $(LISP))
228
247
 
229
248
mostlyclean-tags:
230
249
 
243
262
        @for file in $(DISTFILES); do \
244
263
          d=$(srcdir); \
245
264
          if test -d $$d/$$file; then \
246
 
            cp -pr $$/$$file $(distdir)/$$file; \
 
265
            cp -pr $$d/$$file $(distdir)/$$file; \
247
266
          else \
248
267
            test -f $(distdir)/$$file \
249
268
            || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
250
269
            || cp -p $$d/$$file $(distdir)/$$file || :; \
251
270
          fi; \
252
271
        done
253
 
fontlist.o: fontlist.c ../include/sys-defines.h ../config.h \
254
 
        ../include/plot.h
255
 
graph.o: graph.c ../include/sys-defines.h ../config.h extern.h \
256
 
        ../include/getopt.h
257
 
linemode.o: linemode.c ../include/sys-defines.h ../config.h \
258
 
        ../include/plot.h extern.h
259
 
misc.o: misc.c ../include/sys-defines.h ../config.h extern.h
260
 
plotter.o: plotter.c ../include/sys-defines.h ../config.h \
261
 
        ../include/plot.h extern.h
262
 
reader.o: reader.c ../include/sys-defines.h ../config.h extern.h
263
272
 
264
273
info-am:
265
274
info: info-am