~ubuntu-branches/ubuntu/trusty/xdelta/trusty-proposed

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): LaMont Jones
  • Date: 2003-04-10 00:29:45 UTC
  • Revision ID: james.westby@ubuntu.com-20030410002945-wuxc6i2ig1nnr2ng
Tags: 1.1.3-6
fix grammar in descriptions.  Closes: #183789

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-p5 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.
63
63
CC = @CC@
64
64
CPP = @CPP@
65
65
DLLTOOL = @DLLTOOL@
 
66
ECHO = @ECHO@
66
67
EMACS = @EMACS@
 
68
EXEEXT = @EXEEXT@
67
69
GLIB_CFLAGS = @GLIB_CFLAGS@
68
70
GLIB_CONFIG = @GLIB_CONFIG@
69
71
GLIB_LIBS = @GLIB_LIBS@
70
 
LD = @LD@
71
72
LIBTOOL = @LIBTOOL@
72
73
LN_S = @LN_S@
73
74
MAINT = @MAINT@
74
75
MAKEINFO = @MAKEINFO@
75
 
NM = @NM@
76
76
OBJDUMP = @OBJDUMP@
 
77
OBJEXT = @OBJEXT@
77
78
PACKAGE = @PACKAGE@
78
79
RANLIB = @RANLIB@
 
80
STRIP = @STRIP@
79
81
VERSION = @VERSION@
80
82
top_srcdir_absolute = @top_srcdir_absolute@
81
83
 
124
126
LIBS = @LIBS@
125
127
libxdelta_la_DEPENDENCIES = 
126
128
libxdelta_la_OBJECTS =  xdelta.lo xdapply.lo xd_edsio.lo
 
129
bin_PROGRAMS =  xdelta$(EXEEXT)
127
130
PROGRAMS =  $(bin_PROGRAMS)
128
131
 
129
 
xdelta_OBJECTS =  xdmain.o getopt.o getopt1.o
 
132
xdelta_OBJECTS =  xdmain.$(OBJEXT) getopt.$(OBJEXT) getopt1.$(OBJEXT)
130
133
xdelta_DEPENDENCIES =  libxdelta.la $(top_srcdir)/libedsio/libedsio.la
131
134
xdelta_LDFLAGS = 
132
135
SCRIPTS =  $(bin_SCRIPTS)
150
153
 
151
154
TAR = tar
152
155
GZIP_ENV = --best
 
156
DEP_FILES =  .deps/getopt.P .deps/getopt1.P .deps/xd_edsio.P \
 
157
.deps/xdapply.P .deps/xdelta.P .deps/xdmain.P
153
158
SOURCES = $(libxdelta_la_SOURCES) $(xdelta_SOURCES)
154
159
OBJECTS = $(libxdelta_la_OBJECTS) $(xdelta_OBJECTS)
155
160
 
156
161
all: all-redirect
157
162
.SUFFIXES:
158
 
.SUFFIXES: .S .c .lo .o .s
 
163
.SUFFIXES: .S .c .lo .o .obj .s
159
164
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) 
160
 
        cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps Makefile
 
165
        cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile
161
166
 
162
 
Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
 
167
Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status $(BUILT_SOURCES)
163
168
        cd $(top_builddir) \
164
169
          && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
165
170
 
226
231
          $(LIBTOOL)  --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p; \
227
232
        done
228
233
 
229
 
.c.o:
230
 
        $(COMPILE) -c $<
 
234
# FIXME: We should only use cygpath when building on Windows,
 
235
# and only if it is available.
 
236
.c.obj:
 
237
        $(COMPILE) -c `cygpath -w $<`
231
238
 
232
239
.s.o:
233
240
        $(COMPILE) -c $<
237
244
 
238
245
mostlyclean-compile:
239
246
        -rm -f *.o core *.core
 
247
        -rm -f *.$(OBJEXT)
240
248
 
241
249
clean-compile:
242
250
 
245
253
 
246
254
maintainer-clean-compile:
247
255
 
248
 
.c.lo:
249
 
        $(LIBTOOL) --mode=compile $(COMPILE) -c $<
250
 
 
251
256
.s.lo:
252
257
        $(LIBTOOL) --mode=compile $(COMPILE) -c $<
253
258
 
292
297
          rm -f $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
293
298
        done
294
299
 
295
 
xdelta: $(xdelta_OBJECTS) $(xdelta_DEPENDENCIES)
296
 
        @rm -f xdelta
 
300
xdelta$(EXEEXT): $(xdelta_OBJECTS) $(xdelta_DEPENDENCIES)
 
301
        @rm -f xdelta$(EXEEXT)
297
302
        $(LINK) $(xdelta_LDFLAGS) $(xdelta_OBJECTS) $(xdelta_LDADD) $(LIBS)
298
303
 
299
304
install-binSCRIPTS: $(bin_SCRIPTS)
385
390
        dot_seen=no; \
386
391
        rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \
387
392
          rev="$$subdir $$rev"; \
388
 
          test "$$subdir" = "." && dot_seen=yes; \
 
393
          test "$$subdir" != "." || dot_seen=yes; \
389
394
        done; \
390
395
        test "$$dot_seen" = "no" && rev=". $$rev"; \
391
396
        target=`echo $@ | sed s/-recursive//`; \
427
432
          awk '    { files[$$0] = 1; } \
428
433
               END { for (i in files) print i; }'`; \
429
434
        test -z "$(ETAGS_ARGS)config.h.in$$unique$(LISP)$$tags" \
430
 
          || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags config.h.in $$unique $(LISP) -o $$here/TAGS)
 
435
          || (cd $(srcdir) && etags -o $$here/TAGS $(ETAGS_ARGS) $$tags config.h.in $$unique $(LISP))
431
436
 
432
437
mostlyclean-tags:
433
438
 
476
481
        -rm -rf $(distdir)
477
482
        mkdir $(distdir)
478
483
        -chmod 777 $(distdir)
 
484
        here=`cd $(top_builddir) && pwd`; \
 
485
        top_distdir=`cd $(distdir) && pwd`; \
 
486
        distdir=`cd $(distdir) && pwd`; \
 
487
        cd $(top_srcdir) \
 
488
          && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu Makefile
479
489
        @for file in $(DISTFILES); do \
480
490
          d=$(srcdir); \
481
491
          if test -d $$d/$$file; then \
496
506
              || exit 1; \
497
507
          fi; \
498
508
        done
499
 
getopt.o: getopt.c config.h
500
 
getopt1.o: getopt1.c config.h getopt.h
501
 
xd_edsio.lo xd_edsio.o : xd_edsio.c xdelta.h xd_edsio.h libedsio/edsio.h \
502
 
        config.h libedsio/edsio_edsio.h
503
 
xdapply.lo xdapply.o : xdapply.c xdelta.h xd_edsio.h libedsio/edsio.h \
504
 
        config.h libedsio/edsio_edsio.h xdeltapriv.h
505
 
xdelta.lo xdelta.o : xdelta.c xdelta.h xd_edsio.h libedsio/edsio.h \
506
 
        config.h libedsio/edsio_edsio.h xdeltapriv.h
507
 
xdmain.o: xdmain.c getopt.h xdelta.h xd_edsio.h libedsio/edsio.h \
508
 
        config.h libedsio/edsio_edsio.h
509
 
 
 
509
 
 
510
DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
 
511
 
 
512
-include $(DEP_FILES)
 
513
 
 
514
mostlyclean-depend:
 
515
 
 
516
clean-depend:
 
517
 
 
518
distclean-depend:
 
519
        -rm -rf .deps
 
520
 
 
521
maintainer-clean-depend:
 
522
 
 
523
%.o: %.c
 
524
        @echo '$(COMPILE) -c $<'; \
 
525
        $(COMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
 
526
        @-cp .deps/$(*F).pp .deps/$(*F).P; \
 
527
        tr ' ' '\012' < .deps/$(*F).pp \
 
528
          | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
 
529
            >> .deps/$(*F).P; \
 
530
        rm .deps/$(*F).pp
 
531
 
 
532
%.lo: %.c
 
533
        @echo '$(LTCOMPILE) -c $<'; \
 
534
        $(LTCOMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
 
535
        @-sed -e 's/^\([^:]*\)\.o[      ]*:/\1.lo \1.o :/' \
 
536
          < .deps/$(*F).pp > .deps/$(*F).P; \
 
537
        tr ' ' '\012' < .deps/$(*F).pp \
 
538
          | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
 
539
            >> .deps/$(*F).P; \
 
540
        rm -f .deps/$(*F).pp
510
541
info-am:
511
542
info: info-recursive
512
543
dvi-am:
557
588
mostlyclean-am:  mostlyclean-hdr mostlyclean-libLTLIBRARIES \
558
589
                mostlyclean-compile mostlyclean-libtool \
559
590
                mostlyclean-binPROGRAMS mostlyclean-tags \
560
 
                mostlyclean-generic
 
591
                mostlyclean-depend mostlyclean-generic
561
592
 
562
593
mostlyclean: mostlyclean-recursive
563
594
 
564
595
clean-am:  clean-hdr clean-libLTLIBRARIES clean-compile clean-libtool \
565
 
                clean-binPROGRAMS clean-tags clean-generic \
 
596
                clean-binPROGRAMS clean-tags clean-depend clean-generic \
566
597
                mostlyclean-am
567
598
 
568
599
clean: clean-recursive
569
600
 
570
601
distclean-am:  distclean-hdr distclean-libLTLIBRARIES distclean-compile \
571
602
                distclean-libtool distclean-binPROGRAMS distclean-tags \
572
 
                distclean-generic clean-am
 
603
                distclean-depend distclean-generic clean-am
573
604
        -rm -f libtool
574
605
 
575
606
distclean: distclean-recursive
579
610
                maintainer-clean-libLTLIBRARIES \
580
611
                maintainer-clean-compile maintainer-clean-libtool \
581
612
                maintainer-clean-binPROGRAMS maintainer-clean-tags \
582
 
                maintainer-clean-generic distclean-am
 
613
                maintainer-clean-depend maintainer-clean-generic \
 
614
                distclean-am
583
615
        @echo "This command is intended for maintainers to use;"
584
616
        @echo "it deletes files that may require special tools to rebuild."
585
617
 
602
634
installcheck-recursive info-recursive dvi-recursive \
603
635
mostlyclean-recursive distclean-recursive clean-recursive \
604
636
maintainer-clean-recursive tags tags-recursive mostlyclean-tags \
605
 
distclean-tags clean-tags maintainer-clean-tags distdir info-am info \
606
 
dvi-am dvi check check-am installcheck-am installcheck all-recursive-am \
607
 
install-exec-am install-exec install-data-am install-data install-am \
608
 
install uninstall-am uninstall all-redirect all-am all installdirs-am \
 
637
distclean-tags clean-tags maintainer-clean-tags distdir \
 
638
mostlyclean-depend distclean-depend clean-depend \
 
639
maintainer-clean-depend info-am info dvi-am dvi check check-am \
 
640
installcheck-am installcheck all-recursive-am install-exec-am \
 
641
install-exec install-data-am install-data install-am install \
 
642
uninstall-am uninstall all-redirect all-am all installdirs-am \
609
643
installdirs mostlyclean-generic distclean-generic clean-generic \
610
644
maintainer-clean-generic clean mostlyclean distclean maintainer-clean
611
645