aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2014-01-30 12:09:46 +0000
committerChristian Grothoff <christian@grothoff.org>2014-01-30 12:09:46 +0000
commit0f0b8a77e4de4c6cb862b7f984004e09d40a06d8 (patch)
treeee10bfdbfdd0cb09e153e1c38de3cf7ec8e2d392
parentdeaaa66c8addc4eab4d2abb3d0547ad817167d98 (diff)
downloadgnunet-gtk-0f0b8a77e4de4c6cb862b7f984004e09d40a06d8.tar.gz
gnunet-gtk-0f0b8a77e4de4c6cb862b7f984004e09d40a06d8.zip
-fix linker errors
-rw-r--r--src/conversation/Makefile.am8
-rw-r--r--src/conversation/Makefile.in310
2 files changed, 171 insertions, 147 deletions
diff --git a/src/conversation/Makefile.am b/src/conversation/Makefile.am
index ef5fa5c0..fc2cb64c 100644
--- a/src/conversation/Makefile.am
+++ b/src/conversation/Makefile.am
@@ -11,13 +11,13 @@ bin_PROGRAMS = gnunet-conversation-gtk
11 11
12gnunet_conversation_gtk_SOURCES = \ 12gnunet_conversation_gtk_SOURCES = \
13 gnunet-conversation-gtk.c \ 13 gnunet-conversation-gtk.c \
14 gnunet-conversation-gtk_about.c 14 gnunet-conversation-gtk_about.c
15 15
16gnunet_conversation_gtk_LDADD = \ 16gnunet_conversation_gtk_LDADD = \
17 $(top_builddir)/src/lib/libgnunetgtk.la \ 17 $(top_builddir)/src/lib/libgnunetgtk.la \
18 @GTK_LIBS@ \ 18 @GTK_LIBS@ \
19 @GLADE_LIBS@ @GNUNET_LIBS@ \ 19 @GLADE_LIBS@ @GNUNET_LIBS@ \
20 -lgnunetutil -lgnunetidentity -lgnunetconversation -lgnunetspeaker -lgnunetmicrophone -lgnunetgns -lgnunetfs -lextractor \ 20 -lgnunetutil -lgnunetidentity -lgnunetconversation -lgnunetspeaker -lgnunetmicrophone -lgnunetnamestore -lgnunetgnsrecord -lgnunetgns -lgnunetfs -lextractor \
21 $(INTLLIBS) 21 $(INTLLIBS)
22gnunet_conversation_gtk_LDFLAGS = \ 22gnunet_conversation_gtk_LDFLAGS = \
23 -export-dynamic 23 -export-dynamic
diff --git a/src/conversation/Makefile.in b/src/conversation/Makefile.in
index 6be65fcc..30119ae7 100644
--- a/src/conversation/Makefile.in
+++ b/src/conversation/Makefile.in
@@ -1,9 +1,8 @@
1# Makefile.in generated by automake 1.11.6 from Makefile.am. 1# Makefile.in generated by automake 1.14.1 from Makefile.am.
2# @configure_input@ 2# @configure_input@
3 3
4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 4# Copyright (C) 1994-2013 Free Software Foundation, Inc.
5# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software 5
6# Foundation, Inc.
7# This Makefile.in is free software; the Free Software Foundation 6# This Makefile.in is free software; the Free Software Foundation
8# gives unlimited permission to copy and/or distribute it, 7# gives unlimited permission to copy and/or distribute it,
9# with or without modifications, as long as this notice is preserved. 8# with or without modifications, as long as this notice is preserved.
@@ -16,23 +15,51 @@
16@SET_MAKE@ 15@SET_MAKE@
17 16
18VPATH = @srcdir@ 17VPATH = @srcdir@
19am__make_dryrun = \ 18am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
20 { \ 19am__make_running_with_option = \
21 am__dry=no; \ 20 case $${target_option-} in \
21 ?) ;; \
22 *) echo "am__make_running_with_option: internal error: invalid" \
23 "target option '$${target_option-}' specified" >&2; \
24 exit 1;; \
25 esac; \
26 has_opt=no; \
27 sane_makeflags=$$MAKEFLAGS; \
28 if $(am__is_gnu_make); then \
29 sane_makeflags=$$MFLAGS; \
30 else \
22 case $$MAKEFLAGS in \ 31 case $$MAKEFLAGS in \
23 *\\[\ \ ]*) \ 32 *\\[\ \ ]*) \
24 echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ 33 bs=\\; \
25 | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ 34 sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
26 *) \ 35 | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
27 for am__flg in $$MAKEFLAGS; do \ 36 esac; \
28 case $$am__flg in \ 37 fi; \
29 *=*|--*) ;; \ 38 skip_next=no; \
30 *n*) am__dry=yes; break;; \ 39 strip_trailopt () \
31 esac; \ 40 { \
32 done;; \ 41 flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
42 }; \
43 for flg in $$sane_makeflags; do \
44 test $$skip_next = yes && { skip_next=no; continue; }; \
45 case $$flg in \
46 *=*|--*) continue;; \
47 -*I) strip_trailopt 'I'; skip_next=yes;; \
48 -*I?*) strip_trailopt 'I';; \
49 -*O) strip_trailopt 'O'; skip_next=yes;; \
50 -*O?*) strip_trailopt 'O';; \
51 -*l) strip_trailopt 'l'; skip_next=yes;; \
52 -*l?*) strip_trailopt 'l';; \
53 -[dEDm]) skip_next=yes;; \
54 -[JT]) skip_next=yes;; \
33 esac; \ 55 esac; \
34 test $$am__dry = yes; \ 56 case $$flg in \
35 } 57 *$$target_option*) has_opt=yes; break;; \
58 esac; \
59 done; \
60 test $$has_opt = yes
61am__make_dryrun = (target_option=n; $(am__make_running_with_option))
62am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
36pkgdatadir = $(datadir)/@PACKAGE@ 63pkgdatadir = $(datadir)/@PACKAGE@
37pkgincludedir = $(includedir)/@PACKAGE@ 64pkgincludedir = $(includedir)/@PACKAGE@
38pkglibdir = $(libdir)/@PACKAGE@ 65pkglibdir = $(libdir)/@PACKAGE@
@@ -53,7 +80,8 @@ build_triplet = @build@
53host_triplet = @host@ 80host_triplet = @host@
54bin_PROGRAMS = gnunet-conversation-gtk$(EXEEXT) 81bin_PROGRAMS = gnunet-conversation-gtk$(EXEEXT)
55subdir = src/conversation 82subdir = src/conversation
56DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in 83DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
84 $(top_srcdir)/mkinstalldirs $(top_srcdir)/depcomp
57ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 85ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
58am__aclocal_m4_deps = $(top_srcdir)/m4/ac_define_dir.m4 \ 86am__aclocal_m4_deps = $(top_srcdir)/m4/ac_define_dir.m4 \
59 $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/gtk-2.0.m4 \ 87 $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/gtk-2.0.m4 \
@@ -84,10 +112,23 @@ gnunet_conversation_gtk_DEPENDENCIES = \
84AM_V_lt = $(am__v_lt_@AM_V@) 112AM_V_lt = $(am__v_lt_@AM_V@)
85am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) 113am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
86am__v_lt_0 = --silent 114am__v_lt_0 = --silent
115am__v_lt_1 =
87gnunet_conversation_gtk_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ 116gnunet_conversation_gtk_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
88 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ 117 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
89 $(AM_CFLAGS) $(CFLAGS) $(gnunet_conversation_gtk_LDFLAGS) \ 118 $(AM_CFLAGS) $(CFLAGS) $(gnunet_conversation_gtk_LDFLAGS) \
90 $(LDFLAGS) -o $@ 119 $(LDFLAGS) -o $@
120AM_V_P = $(am__v_P_@AM_V@)
121am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
122am__v_P_0 = false
123am__v_P_1 = :
124AM_V_GEN = $(am__v_GEN_@AM_V@)
125am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
126am__v_GEN_0 = @echo " GEN " $@;
127am__v_GEN_1 =
128AM_V_at = $(am__v_at_@AM_V@)
129am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
130am__v_at_0 = @
131am__v_at_1 =
91DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) 132DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
92depcomp = $(SHELL) $(top_srcdir)/depcomp 133depcomp = $(SHELL) $(top_srcdir)/depcomp
93am__depfiles_maybe = depfiles 134am__depfiles_maybe = depfiles
@@ -100,29 +141,26 @@ LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
100 $(AM_CFLAGS) $(CFLAGS) 141 $(AM_CFLAGS) $(CFLAGS)
101AM_V_CC = $(am__v_CC_@AM_V@) 142AM_V_CC = $(am__v_CC_@AM_V@)
102am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) 143am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
103am__v_CC_0 = @echo " CC " $@; 144am__v_CC_0 = @echo " CC " $@;
104AM_V_at = $(am__v_at_@AM_V@) 145am__v_CC_1 =
105am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
106am__v_at_0 = @
107CCLD = $(CC) 146CCLD = $(CC)
108LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ 147LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
109 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ 148 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
110 $(AM_LDFLAGS) $(LDFLAGS) -o $@ 149 $(AM_LDFLAGS) $(LDFLAGS) -o $@
111AM_V_CCLD = $(am__v_CCLD_@AM_V@) 150AM_V_CCLD = $(am__v_CCLD_@AM_V@)
112am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) 151am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
113am__v_CCLD_0 = @echo " CCLD " $@; 152am__v_CCLD_0 = @echo " CCLD " $@;
114AM_V_GEN = $(am__v_GEN_@AM_V@) 153am__v_CCLD_1 =
115am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
116am__v_GEN_0 = @echo " GEN " $@;
117SOURCES = $(gnunet_conversation_gtk_SOURCES) 154SOURCES = $(gnunet_conversation_gtk_SOURCES)
118DIST_SOURCES = $(gnunet_conversation_gtk_SOURCES) 155DIST_SOURCES = $(gnunet_conversation_gtk_SOURCES)
119RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ 156RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
120 html-recursive info-recursive install-data-recursive \ 157 ctags-recursive dvi-recursive html-recursive info-recursive \
121 install-dvi-recursive install-exec-recursive \ 158 install-data-recursive install-dvi-recursive \
122 install-html-recursive install-info-recursive \ 159 install-exec-recursive install-html-recursive \
123 install-pdf-recursive install-ps-recursive install-recursive \ 160 install-info-recursive install-pdf-recursive \
124 installcheck-recursive installdirs-recursive pdf-recursive \ 161 install-ps-recursive install-recursive installcheck-recursive \
125 ps-recursive uninstall-recursive 162 installdirs-recursive pdf-recursive ps-recursive \
163 tags-recursive uninstall-recursive
126am__can_run_installinfo = \ 164am__can_run_installinfo = \
127 case $$AM_UPDATE_INFO_DIR in \ 165 case $$AM_UPDATE_INFO_DIR in \
128 n|no|NO) false;; \ 166 n|no|NO) false;; \
@@ -130,9 +168,29 @@ am__can_run_installinfo = \
130 esac 168 esac
131RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ 169RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
132 distclean-recursive maintainer-clean-recursive 170 distclean-recursive maintainer-clean-recursive
133AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ 171am__recursive_targets = \
134 $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ 172 $(RECURSIVE_TARGETS) \
173 $(RECURSIVE_CLEAN_TARGETS) \
174 $(am__extra_recursive_targets)
175AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
135 distdir 176 distdir
177am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
178# Read a list of newline-separated strings from the standard input,
179# and print each of them once, without duplicates. Input order is
180# *not* preserved.
181am__uniquify_input = $(AWK) '\
182 BEGIN { nonempty = 0; } \
183 { items[$$0] = 1; nonempty = 1; } \
184 END { if (nonempty) { for (i in items) print i; }; } \
185'
186# Make sure the list of sources is unique. This is necessary because,
187# e.g., the same source file might be shared among _SOURCES variables
188# for different programs/libraries.
189am__define_uniq_tagged_files = \
190 list='$(am__tagged_files)'; \
191 unique=`for i in $$list; do \
192 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
193 done | $(am__uniquify_input)`
136ETAGS = etags 194ETAGS = etags
137CTAGS = ctags 195CTAGS = ctags
138DIST_SUBDIRS = $(SUBDIRS) 196DIST_SUBDIRS = $(SUBDIRS)
@@ -340,17 +398,17 @@ INCLUDES = \
340 398
341gnunet_conversation_gtk_SOURCES = \ 399gnunet_conversation_gtk_SOURCES = \
342 gnunet-conversation-gtk.c \ 400 gnunet-conversation-gtk.c \
343 gnunet-conversation-gtk_about.c 401 gnunet-conversation-gtk_about.c
344 402
345gnunet_conversation_gtk_LDADD = \ 403gnunet_conversation_gtk_LDADD = \
346 $(top_builddir)/src/lib/libgnunetgtk.la \ 404 $(top_builddir)/src/lib/libgnunetgtk.la \
347 @GTK_LIBS@ \ 405 @GTK_LIBS@ \
348 @GLADE_LIBS@ @GNUNET_LIBS@ \ 406 @GLADE_LIBS@ @GNUNET_LIBS@ \
349 -lgnunetutil -lgnunetidentity -lgnunetconversation -lgnunetspeaker -lgnunetmicrophone -lgnunetgns -lgnunetfs -lextractor \ 407 -lgnunetutil -lgnunetidentity -lgnunetconversation -lgnunetspeaker -lgnunetmicrophone -lgnunetnamestore -lgnunetgnsrecord -lgnunetgns -lgnunetfs -lextractor \
350 $(INTLLIBS) 408 $(INTLLIBS)
351 409
352gnunet_conversation_gtk_LDFLAGS = \ 410gnunet_conversation_gtk_LDFLAGS = \
353 -export-dynamic 411 -export-dynamic
354 412
355all: all-recursive 413all: all-recursive
356 414
@@ -395,10 +453,12 @@ install-binPROGRAMS: $(bin_PROGRAMS)
395 fi; \ 453 fi; \
396 for p in $$list; do echo "$$p $$p"; done | \ 454 for p in $$list; do echo "$$p $$p"; done | \
397 sed 's/$(EXEEXT)$$//' | \ 455 sed 's/$(EXEEXT)$$//' | \
398 while read p p1; do if test -f $$p || test -f $$p1; \ 456 while read p p1; do if test -f $$p \
399 then echo "$$p"; echo "$$p"; else :; fi; \ 457 || test -f $$p1 \
458 ; then echo "$$p"; echo "$$p"; else :; fi; \
400 done | \ 459 done | \
401 sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ 460 sed -e 'p;s,.*/,,;n;h' \
461 -e 's|.*|.|' \
402 -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ 462 -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
403 sed 'N;N;N;s,\n, ,g' | \ 463 sed 'N;N;N;s,\n, ,g' | \
404 $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ 464 $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
@@ -419,7 +479,8 @@ uninstall-binPROGRAMS:
419 @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ 479 @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
420 files=`for p in $$list; do echo "$$p"; done | \ 480 files=`for p in $$list; do echo "$$p"; done | \
421 sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ 481 sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
422 -e 's/$$/$(EXEEXT)/' `; \ 482 -e 's/$$/$(EXEEXT)/' \
483 `; \
423 test -n "$$list" || exit 0; \ 484 test -n "$$list" || exit 0; \
424 echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ 485 echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
425 cd "$(DESTDIR)$(bindir)" && rm -f $$files 486 cd "$(DESTDIR)$(bindir)" && rm -f $$files
@@ -432,6 +493,7 @@ clean-binPROGRAMS:
432 list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ 493 list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
433 echo " rm -f" $$list; \ 494 echo " rm -f" $$list; \
434 rm -f $$list 495 rm -f $$list
496
435gnunet-conversation-gtk$(EXEEXT): $(gnunet_conversation_gtk_OBJECTS) $(gnunet_conversation_gtk_DEPENDENCIES) $(EXTRA_gnunet_conversation_gtk_DEPENDENCIES) 497gnunet-conversation-gtk$(EXEEXT): $(gnunet_conversation_gtk_OBJECTS) $(gnunet_conversation_gtk_DEPENDENCIES) $(EXTRA_gnunet_conversation_gtk_DEPENDENCIES)
436 @rm -f gnunet-conversation-gtk$(EXEEXT) 498 @rm -f gnunet-conversation-gtk$(EXEEXT)
437 $(AM_V_CCLD)$(gnunet_conversation_gtk_LINK) $(gnunet_conversation_gtk_OBJECTS) $(gnunet_conversation_gtk_LDADD) $(LIBS) 499 $(AM_V_CCLD)$(gnunet_conversation_gtk_LINK) $(gnunet_conversation_gtk_OBJECTS) $(gnunet_conversation_gtk_LDADD) $(LIBS)
@@ -450,14 +512,14 @@ distclean-compile:
450@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po 512@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
451@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ 513@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
452@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ 514@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
453@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< 515@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
454 516
455.c.obj: 517.c.obj:
456@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` 518@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
457@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po 519@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
458@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ 520@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
459@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ 521@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
460@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` 522@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
461 523
462.c.lo: 524.c.lo:
463@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< 525@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -473,22 +535,25 @@ clean-libtool:
473 -rm -rf .libs _libs 535 -rm -rf .libs _libs
474 536
475# This directory's subdirectories are mostly independent; you can cd 537# This directory's subdirectories are mostly independent; you can cd
476# into them and run `make' without going through this Makefile. 538# into them and run 'make' without going through this Makefile.
477# To change the values of `make' variables: instead of editing Makefiles, 539# To change the values of 'make' variables: instead of editing Makefiles,
478# (1) if the variable is set in `config.status', edit `config.status' 540# (1) if the variable is set in 'config.status', edit 'config.status'
479# (which will cause the Makefiles to be regenerated when you run `make'); 541# (which will cause the Makefiles to be regenerated when you run 'make');
480# (2) otherwise, pass the desired values on the `make' command line. 542# (2) otherwise, pass the desired values on the 'make' command line.
481$(RECURSIVE_TARGETS): 543$(am__recursive_targets):
482 @fail= failcom='exit 1'; \ 544 @fail=; \
483 for f in x $$MAKEFLAGS; do \ 545 if $(am__make_keepgoing); then \
484 case $$f in \ 546 failcom='fail=yes'; \
485 *=* | --[!k]*);; \ 547 else \
486 *k*) failcom='fail=yes';; \ 548 failcom='exit 1'; \
487 esac; \ 549 fi; \
488 done; \
489 dot_seen=no; \ 550 dot_seen=no; \
490 target=`echo $@ | sed s/-recursive//`; \ 551 target=`echo $@ | sed s/-recursive//`; \
491 list='$(SUBDIRS)'; for subdir in $$list; do \ 552 case "$@" in \
553 distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
554 *) list='$(SUBDIRS)' ;; \
555 esac; \
556 for subdir in $$list; do \
492 echo "Making $$target in $$subdir"; \ 557 echo "Making $$target in $$subdir"; \
493 if test "$$subdir" = "."; then \ 558 if test "$$subdir" = "."; then \
494 dot_seen=yes; \ 559 dot_seen=yes; \
@@ -503,57 +568,12 @@ $(RECURSIVE_TARGETS):
503 $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ 568 $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
504 fi; test -z "$$fail" 569 fi; test -z "$$fail"
505 570
506$(RECURSIVE_CLEAN_TARGETS): 571ID: $(am__tagged_files)
507 @fail= failcom='exit 1'; \ 572 $(am__define_uniq_tagged_files); mkid -fID $$unique
508 for f in x $$MAKEFLAGS; do \ 573tags: tags-recursive
509 case $$f in \ 574TAGS: tags
510 *=* | --[!k]*);; \
511 *k*) failcom='fail=yes';; \
512 esac; \
513 done; \
514 dot_seen=no; \
515 case "$@" in \
516 distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
517 *) list='$(SUBDIRS)' ;; \
518 esac; \
519 rev=''; for subdir in $$list; do \
520 if test "$$subdir" = "."; then :; else \
521 rev="$$subdir $$rev"; \
522 fi; \
523 done; \
524 rev="$$rev ."; \
525 target=`echo $@ | sed s/-recursive//`; \
526 for subdir in $$rev; do \
527 echo "Making $$target in $$subdir"; \
528 if test "$$subdir" = "."; then \
529 local_target="$$target-am"; \
530 else \
531 local_target="$$target"; \
532 fi; \
533 ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
534 || eval $$failcom; \
535 done && test -z "$$fail"
536tags-recursive:
537 list='$(SUBDIRS)'; for subdir in $$list; do \
538 test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
539 done
540ctags-recursive:
541 list='$(SUBDIRS)'; for subdir in $$list; do \
542 test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
543 done
544 575
545ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) 576tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
546 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
547 unique=`for i in $$list; do \
548 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
549 done | \
550 $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
551 END { if (nonempty) { for (i in files) print i; }; }'`; \
552 mkid -fID $$unique
553tags: TAGS
554
555TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
556 $(TAGS_FILES) $(LISP)
557 set x; \ 577 set x; \
558 here=`pwd`; \ 578 here=`pwd`; \
559 if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ 579 if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
@@ -569,12 +589,7 @@ TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
569 set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ 589 set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
570 fi; \ 590 fi; \
571 done; \ 591 done; \
572 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ 592 $(am__define_uniq_tagged_files); \
573 unique=`for i in $$list; do \
574 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
575 done | \
576 $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
577 END { if (nonempty) { for (i in files) print i; }; }'`; \
578 shift; \ 593 shift; \
579 if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ 594 if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
580 test -n "$$unique" || unique=$$empty_fix; \ 595 test -n "$$unique" || unique=$$empty_fix; \
@@ -586,15 +601,11 @@ TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
586 $$unique; \ 601 $$unique; \
587 fi; \ 602 fi; \
588 fi 603 fi
589ctags: CTAGS 604ctags: ctags-recursive
590CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ 605
591 $(TAGS_FILES) $(LISP) 606CTAGS: ctags
592 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ 607ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
593 unique=`for i in $$list; do \ 608 $(am__define_uniq_tagged_files); \
594 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
595 done | \
596 $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
597 END { if (nonempty) { for (i in files) print i; }; }'`; \
598 test -z "$(CTAGS_ARGS)$$unique" \ 609 test -z "$(CTAGS_ARGS)$$unique" \
599 || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ 610 || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
600 $$unique 611 $$unique
@@ -603,6 +614,21 @@ GTAGS:
603 here=`$(am__cd) $(top_builddir) && pwd` \ 614 here=`$(am__cd) $(top_builddir) && pwd` \
604 && $(am__cd) $(top_srcdir) \ 615 && $(am__cd) $(top_srcdir) \
605 && gtags -i $(GTAGS_ARGS) "$$here" 616 && gtags -i $(GTAGS_ARGS) "$$here"
617cscopelist: cscopelist-recursive
618
619cscopelist-am: $(am__tagged_files)
620 list='$(am__tagged_files)'; \
621 case "$(srcdir)" in \
622 [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
623 *) sdir=$(subdir)/$(srcdir) ;; \
624 esac; \
625 for i in $$list; do \
626 if test -f "$$i"; then \
627 echo "$(subdir)/$$i"; \
628 else \
629 echo "$$sdir/$$i"; \
630 fi; \
631 done >> $(top_builddir)/cscope.files
606 632
607distclean-tags: 633distclean-tags:
608 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags 634 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
@@ -770,24 +796,22 @@ ps-am:
770 796
771uninstall-am: uninstall-binPROGRAMS 797uninstall-am: uninstall-binPROGRAMS
772 798
773.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \ 799.MAKE: $(am__recursive_targets) install-am install-strip
774 install-am install-strip tags-recursive 800
775 801.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
776.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ 802 check-am clean clean-binPROGRAMS clean-generic clean-libtool \
777 all all-am check check-am clean clean-binPROGRAMS \ 803 cscopelist-am ctags ctags-am distclean distclean-compile \
778 clean-generic clean-libtool ctags ctags-recursive distclean \ 804 distclean-generic distclean-libtool distclean-tags distdir dvi \
779 distclean-compile distclean-generic distclean-libtool \ 805 dvi-am html html-am info info-am install install-am \
780 distclean-tags distdir dvi dvi-am html html-am info info-am \ 806 install-binPROGRAMS install-data install-data-am install-dvi \
781 install install-am install-binPROGRAMS install-data \ 807 install-dvi-am install-exec install-exec-am install-html \
782 install-data-am install-dvi install-dvi-am install-exec \ 808 install-html-am install-info install-info-am install-man \
783 install-exec-am install-html install-html-am install-info \ 809 install-pdf install-pdf-am install-ps install-ps-am \
784 install-info-am install-man install-pdf install-pdf-am \ 810 install-strip installcheck installcheck-am installdirs \
785 install-ps install-ps-am install-strip installcheck \ 811 installdirs-am maintainer-clean maintainer-clean-generic \
786 installcheck-am installdirs installdirs-am maintainer-clean \ 812 mostlyclean mostlyclean-compile mostlyclean-generic \
787 maintainer-clean-generic mostlyclean mostlyclean-compile \ 813 mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
788 mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ 814 uninstall-am uninstall-binPROGRAMS
789 tags tags-recursive uninstall uninstall-am \
790 uninstall-binPROGRAMS
791 815
792 816
793# Tell versions [3.59,3.63) of GNU make to not export all variables. 817# Tell versions [3.59,3.63) of GNU make to not export all variables.