Changeset 544
- Timestamp:
- 02/11/10 13:12:08 (2 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
-
configure (modified) (10 diffs)
-
src/Makefile.in (modified) (27 diffs)
-
src/cygwin/Makefile.in (modified) (20 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure
r542 r544 1 1 #! /bin/sh 2 2 # Guess values for system-dependent variables and create Makefiles. 3 # Generated by GNU Autoconf 2.62 for onioncat 0.2.2.r54 2.3 # Generated by GNU Autoconf 2.62 for onioncat 0.2.2.r544. 4 4 # 5 5 # Report bugs to <rahra@cypherpunk.at>. … … 597 597 PACKAGE_NAME='onioncat' 598 598 PACKAGE_TARNAME='onioncat' 599 PACKAGE_VERSION='0.2.2.r54 2'600 PACKAGE_STRING='onioncat 0.2.2.r54 2'599 PACKAGE_VERSION='0.2.2.r544' 600 PACKAGE_STRING='onioncat 0.2.2.r544' 601 601 PACKAGE_BUGREPORT='rahra@cypherpunk.at' 602 602 … … 1261 1261 # This message is too long to be a string in the A/UX 3.1 sh. 1262 1262 cat <<_ACEOF 1263 \`configure' configures onioncat 0.2.2.r54 2to adapt to many kinds of systems.1263 \`configure' configures onioncat 0.2.2.r544 to adapt to many kinds of systems. 1264 1264 1265 1265 Usage: $0 [OPTION]... [VAR=VALUE]... … … 1331 1331 if test -n "$ac_init_help"; then 1332 1332 case $ac_init_help in 1333 short | recursive ) echo "Configuration of onioncat 0.2.2.r54 2:";;1333 short | recursive ) echo "Configuration of onioncat 0.2.2.r544:";; 1334 1334 esac 1335 1335 cat <<\_ACEOF … … 1423 1423 if $ac_init_version; then 1424 1424 cat <<\_ACEOF 1425 onioncat configure 0.2.2.r54 21425 onioncat configure 0.2.2.r544 1426 1426 generated by GNU Autoconf 2.62 1427 1427 … … 1437 1437 running configure, to aid debugging if configure makes a mistake. 1438 1438 1439 It was created by onioncat $as_me 0.2.2.r54 2, which was1439 It was created by onioncat $as_me 0.2.2.r544, which was 1440 1440 generated by GNU Autoconf 2.62. Invocation command line was 1441 1441 … … 2086 2086 # Define the identity of the package. 2087 2087 PACKAGE='onioncat' 2088 VERSION='0.2.2.r54 2'2088 VERSION='0.2.2.r544' 2089 2089 2090 2090 … … 2237 2237 2238 2238 cat >>confdefs.h <<\_ACEOF 2239 #define SVN_REVISION "54 2"2239 #define SVN_REVISION "544" 2240 2240 _ACEOF 2241 2241 … … 5326 5326 # values after options handling. 5327 5327 ac_log=" 5328 This file was extended by onioncat $as_me 0.2.2.r54 2, which was5328 This file was extended by onioncat $as_me 0.2.2.r544, which was 5329 5329 generated by GNU Autoconf 2.62. Invocation command line was 5330 5330 … … 5379 5379 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 5380 5380 ac_cs_version="\\ 5381 onioncat config.status 0.2.2.r54 25381 onioncat config.status 0.2.2.r544 5382 5382 configured by $0, generated by GNU Autoconf 2.62, 5383 5383 with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" -
trunk/src/Makefile.in
r543 r544 1 # Makefile.in generated by automake 1. 11.1from Makefile.am.1 # Makefile.in generated by automake 1.9.6 from Makefile.am. 2 2 # @configure_input@ 3 3 4 4 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 5 # 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, 6 # Inc. 5 # 2003, 2004, 2005 Free Software Foundation, Inc. 7 6 # This Makefile.in is free software; the Free Software Foundation 8 7 # gives unlimited permission to copy and/or distribute it, … … 17 16 18 17 18 srcdir = @srcdir@ 19 top_srcdir = @top_srcdir@ 19 20 VPATH = @srcdir@ 20 21 pkgdatadir = $(datadir)/@PACKAGE@ 22 pkglibdir = $(libdir)/@PACKAGE@ 21 23 pkgincludedir = $(includedir)/@PACKAGE@ 22 pkglibdir = $(libdir)/@PACKAGE@ 23 pkglibexecdir = $(libexecdir)/@PACKAGE@ 24 top_builddir = .. 24 25 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd 26 INSTALL = @INSTALL@ 25 27 install_sh_DATA = $(install_sh) -c -m 644 26 28 install_sh_PROGRAM = $(install_sh) -c … … 45 47 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ 46 48 $(ACLOCAL_M4) 47 mkinstalldirs = $( install_sh) -d49 mkinstalldirs = $(SHELL) $(install_sh) -d 48 50 CONFIG_HEADER = $(top_builddir)/config.h 49 51 CONFIG_CLEAN_FILES = 50 CONFIG_CLEAN_VPATH_FILES =51 52 am__installdirs = "$(DESTDIR)$(bindir)" 53 binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) 52 54 PROGRAMS = $(bin_PROGRAMS) 53 55 am_ocat_OBJECTS = ocat.$(OBJEXT) ocatlog.$(OBJEXT) ocatroute.$(OBJEXT) \ … … 60 62 ocat_OBJECTS = $(am_ocat_OBJECTS) 61 63 ocat_LDADD = $(LDADD) 62 DEFAULT_INCLUDES = -I. @am__isrc@-I$(top_builddir)64 DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) 63 65 depcomp = $(SHELL) $(top_srcdir)/depcomp 64 66 am__depfiles_maybe = depfiles 65 am__mv = mv -f66 67 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ 67 68 $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) … … 75 76 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 76 77 ACLOCAL = @ACLOCAL@ 78 AMDEP_FALSE = @AMDEP_FALSE@ 79 AMDEP_TRUE = @AMDEP_TRUE@ 77 80 AMTAR = @AMTAR@ 78 81 AUTOCONF = @AUTOCONF@ … … 91 94 ECHO_T = @ECHO_T@ 92 95 EXEEXT = @EXEEXT@ 93 INSTALL = @INSTALL@94 96 INSTALL_DATA = @INSTALL_DATA@ 95 97 INSTALL_PROGRAM = @INSTALL_PROGRAM@ … … 102 104 LTLIBOBJS = @LTLIBOBJS@ 103 105 MAKEINFO = @MAKEINFO@ 104 MKDIR_P = @MKDIR_P@105 106 OBJEXT = @OBJEXT@ 106 107 PACKAGE = @PACKAGE@ … … 109 110 PACKAGE_STRING = @PACKAGE_STRING@ 110 111 PACKAGE_TARNAME = @PACKAGE_TARNAME@ 111 PACKAGE_URL = @PACKAGE_URL@112 112 PACKAGE_VERSION = @PACKAGE_VERSION@ 113 113 PATH_SEPARATOR = @PATH_SEPARATOR@ … … 119 119 STRIP = @STRIP@ 120 120 VERSION = @VERSION@ 121 abs_builddir = @abs_builddir@122 abs_srcdir = @abs_srcdir@123 abs_top_builddir = @abs_top_builddir@124 abs_top_srcdir = @abs_top_srcdir@125 121 ac_ct_CC = @ac_ct_CC@ 122 am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ 123 am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ 126 124 am__include = @am__include@ 127 125 am__leading_dot = @am__leading_dot@ … … 136 134 build_os = @build_os@ 137 135 build_vendor = @build_vendor@ 138 builddir = @builddir@139 136 datadir = @datadir@ 140 137 datarootdir = @datarootdir@ … … 164 161 sbindir = @sbindir@ 165 162 sharedstatedir = @sharedstatedir@ 166 srcdir = @srcdir@167 163 sysconfdir = @sysconfdir@ 168 164 target_alias = @target_alias@ 169 top_build_prefix = @top_build_prefix@170 top_builddir = @top_builddir@171 top_srcdir = @top_srcdir@172 165 ocat_SOURCES = ocat.c ocatlog.c ocatroute.c ocatthread.c ocattun.c ocatv6conv.c ocatcompat.c ocatpeer.c ocatsetup.c ocatipv4route.c ocateth.c ocatsocks.c ocatlibe.c ocatctrl.c ocatipv6route.c ocaticmp.c ocat_wintuntap.c ocat_netdesc.c 173 166 noinst_HEADERS = ocat.h ocat_netdesc.h strlcpy.c strlcat.c … … 181 174 case '$(am__configure_deps)' in \ 182 175 *$$dep*) \ 183 ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh )\184 && { if test -f $@; then exit 0; else break; fi; }; \176 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ 177 && exit 0; \ 185 178 exit 1;; \ 186 179 esac; \ 187 180 done; \ 188 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \189 $(am__cd)$(top_srcdir) && \190 $(AUTOMAKE) --gnu src/Makefile181 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \ 182 cd $(top_srcdir) && \ 183 $(AUTOMAKE) --gnu src/Makefile 191 184 .PRECIOUS: Makefile 192 185 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status … … 206 199 $(ACLOCAL_M4): $(am__aclocal_m4_deps) 207 200 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh 208 $(am__aclocal_m4_deps):209 201 install-binPROGRAMS: $(bin_PROGRAMS) 210 202 @$(NORMAL_INSTALL) 211 test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" 212 @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ 213 for p in $$list; do echo "$$p $$p"; done | \ 214 sed 's/$(EXEEXT)$$//' | \ 215 while read p p1; do if test -f $$p; \ 216 then echo "$$p"; echo "$$p"; else :; fi; \ 217 done | \ 218 sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ 219 -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ 220 sed 'N;N;N;s,\n, ,g' | \ 221 $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ 222 { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ 223 if ($$2 == $$4) files[d] = files[d] " " $$1; \ 224 else { print "f", $$3 "/" $$4, $$1; } } \ 225 END { for (d in files) print "f", d, files[d] }' | \ 226 while read type dir files; do \ 227 if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ 228 test -z "$$files" || { \ 229 echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ 230 $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ 231 } \ 232 ; done 203 test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)" 204 @list='$(bin_PROGRAMS)'; for p in $$list; do \ 205 p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ 206 if test -f $$p \ 207 ; then \ 208 f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ 209 echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \ 210 $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \ 211 else :; fi; \ 212 done 233 213 234 214 uninstall-binPROGRAMS: 235 215 @$(NORMAL_UNINSTALL) 236 @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ 237 files=`for p in $$list; do echo "$$p"; done | \ 238 sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ 239 -e 's/$$/$(EXEEXT)/' `; \ 240 test -n "$$list" || exit 0; \ 241 echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ 242 cd "$(DESTDIR)$(bindir)" && rm -f $$files 216 @list='$(bin_PROGRAMS)'; for p in $$list; do \ 217 f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ 218 echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \ 219 rm -f "$(DESTDIR)$(bindir)/$$f"; \ 220 done 243 221 244 222 clean-binPROGRAMS: … … 246 224 ocat$(EXEEXT): $(ocat_OBJECTS) $(ocat_DEPENDENCIES) 247 225 @rm -f ocat$(EXEEXT) 248 $(LINK) $(ocat_ OBJECTS) $(ocat_LDADD) $(LIBS)226 $(LINK) $(ocat_LDFLAGS) $(ocat_OBJECTS) $(ocat_LDADD) $(LIBS) 249 227 250 228 mostlyclean-compile: … … 274 252 275 253 .c.o: 276 @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<277 @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po254 @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ 255 @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi 278 256 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ 279 257 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ … … 281 259 282 260 .c.obj: 283 @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`284 @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po261 @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ 262 @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi 285 263 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ 286 264 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ 287 265 @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` 266 uninstall-info-am: 288 267 289 268 ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) … … 292 271 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ 293 272 done | \ 294 $(AWK) ' { files[$$0] = 1; nonempty= 1; } \295 END { if (nonempty) { for (i in files) print i; }; }'`; \273 $(AWK) ' { files[$$0] = 1; } \ 274 END { for (i in files) print i; }'`; \ 296 275 mkid -fID $$unique 297 276 tags: TAGS … … 299 278 TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ 300 279 $(TAGS_FILES) $(LISP) 301 set x; \280 tags=; \ 302 281 here=`pwd`; \ 303 282 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ … … 305 284 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ 306 285 done | \ 307 $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ 308 END { if (nonempty) { for (i in files) print i; }; }'`; \ 309 shift; \ 310 if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ 286 $(AWK) ' { files[$$0] = 1; } \ 287 END { for (i in files) print i; }'`; \ 288 if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ 311 289 test -n "$$unique" || unique=$$empty_fix; \ 312 if test $$# -gt 0; then \ 313 $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ 314 "$$@" $$unique; \ 315 else \ 316 $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ 317 $$unique; \ 318 fi; \ 290 $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ 291 $$tags $$unique; \ 319 292 fi 320 293 ctags: CTAGS 321 294 CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ 322 295 $(TAGS_FILES) $(LISP) 296 tags=; \ 297 here=`pwd`; \ 323 298 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ 324 299 unique=`for i in $$list; do \ 325 300 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ 326 301 done | \ 327 $(AWK) ' { files[$$0] = 1; nonempty= 1; } \328 END { if (nonempty) { for (i in files) print i; }; }'`; \329 test -z "$(CTAGS_ARGS)$$ unique" \302 $(AWK) ' { files[$$0] = 1; } \ 303 END { for (i in files) print i; }'`; \ 304 test -z "$(CTAGS_ARGS)$$tags$$unique" \ 330 305 || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ 331 $$ unique306 $$tags $$unique 332 307 333 308 GTAGS: 334 309 here=`$(am__cd) $(top_builddir) && pwd` \ 335 && $(am__cd)$(top_srcdir) \336 && gtags -i $(GTAGS_ARGS) "$$here"310 && cd $(top_srcdir) \ 311 && gtags -i $(GTAGS_ARGS) $$here 337 312 338 313 distclean-tags: … … 340 315 341 316 distdir: $(DISTFILES) 342 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ 343 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ 344 list='$(DISTFILES)'; \ 345 dist_files=`for file in $$list; do echo $$file; done | \ 346 sed -e "s|^$$srcdirstrip/||;t" \ 347 -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ 348 case $$dist_files in \ 349 */*) $(MKDIR_P) `echo "$$dist_files" | \ 350 sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ 351 sort -u` ;; \ 352 esac; \ 353 for file in $$dist_files; do \ 317 @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ 318 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ 319 list='$(DISTFILES)'; for file in $$list; do \ 320 case $$file in \ 321 $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ 322 $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ 323 esac; \ 354 324 if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ 325 dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ 326 if test "$$dir" != "$$file" && test "$$dir" != "."; then \ 327 dir="/$$dir"; \ 328 $(mkdir_p) "$(distdir)$$dir"; \ 329 else \ 330 dir=''; \ 331 fi; \ 355 332 if test -d $$d/$$file; then \ 356 dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ 357 if test -d "$(distdir)/$$file"; then \ 358 find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ 333 if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ 334 cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ 359 335 fi; \ 360 if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ 361 cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ 362 find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ 363 fi; \ 364 cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ 336 cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ 365 337 else \ 366 test -f "$(distdir)/$$file"\367 || cp -p $$d/$$file "$(distdir)/$$file"\338 test -f $(distdir)/$$file \ 339 || cp -p $$d/$$file $(distdir)/$$file \ 368 340 || exit 1; \ 369 341 fi; \ … … 374 346 installdirs: 375 347 for dir in "$(DESTDIR)$(bindir)"; do \ 376 test -z "$$dir" || $( MKDIR_P) "$$dir"; \348 test -z "$$dir" || $(mkdir_p) "$$dir"; \ 377 349 done 378 350 install: install-am … … 396 368 distclean-generic: 397 369 -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) 398 -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)399 370 400 371 maintainer-clean-generic: … … 417 388 html: html-am 418 389 419 html-am:420 421 390 info: info-am 422 391 … … 424 393 425 394 install-data-am: 426 427 install-dvi: install-dvi-am428 429 install-dvi-am:430 395 431 396 install-exec-am: install-binPROGRAMS 432 397 @$(NORMAL_INSTALL) 433 398 $(MAKE) $(AM_MAKEFLAGS) install-exec-hook 434 install-html: install-html-am435 436 install-html-am:437 399 438 400 install-info: install-info-am 439 401 440 install-info-am:441 442 402 install-man: 443 444 install-pdf: install-pdf-am445 446 install-pdf-am:447 448 install-ps: install-ps-am449 450 install-ps-am:451 403 452 404 installcheck-am: … … 469 421 ps-am: 470 422 471 uninstall-am: uninstall-binPROGRAMS 472 473 .MAKE: install-am install-exec-am install-strip 423 uninstall-am: uninstall-binPROGRAMS uninstall-info-am 474 424 475 425 .PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \ … … 477 427 distclean-generic distclean-tags distdir dvi dvi-am html \ 478 428 html-am info info-am install install-am install-binPROGRAMS \ 479 install-data install-data-am install-dvi install-dvi-am \ 480 install-exec install-exec-am install-exec-hook install-html \ 481 install-html-am install-info install-info-am install-man \ 482 install-pdf install-pdf-am install-ps install-ps-am \ 429 install-data install-data-am install-exec install-exec-am \ 430 install-exec-hook install-info install-info-am install-man \ 483 431 install-strip installcheck installcheck-am installdirs \ 484 432 maintainer-clean maintainer-clean-generic mostlyclean \ 485 433 mostlyclean-compile mostlyclean-generic pdf pdf-am ps ps-am \ 486 tags uninstall uninstall-am uninstall-binPROGRAMS 434 tags uninstall uninstall-am uninstall-binPROGRAMS \ 435 uninstall-info-am 487 436 488 437 … … 490 439 $(LN_S) -f $(DESTDIR)$(bindir)/ocat$(EXEEXT) \ 491 440 $(DESTDIR)$(bindir)/gcat$(EXEEXT) 492 493 441 # Tell versions [3.59,3.63) of GNU make to not export all variables. 494 442 # Otherwise a system limit (for SysV at least) may be exceeded. -
trunk/src/cygwin/Makefile.in
r543 r544 1 # Makefile.in generated by automake 1. 11.1from Makefile.am.1 # Makefile.in generated by automake 1.9.6 from Makefile.am. 2 2 # @configure_input@ 3 3 4 4 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 5 # 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, 6 # Inc. 5 # 2003, 2004, 2005 Free Software Foundation, Inc. 7 6 # This Makefile.in is free software; the Free Software Foundation 8 7 # gives unlimited permission to copy and/or distribute it, … … 16 15 @SET_MAKE@ 17 16 17 srcdir = @srcdir@ 18 top_srcdir = @top_srcdir@ 18 19 VPATH = @srcdir@ 19 20 pkgdatadir = $(datadir)/@PACKAGE@ 21 pkglibdir = $(libdir)/@PACKAGE@ 20 22 pkgincludedir = $(includedir)/@PACKAGE@ 21 pkglibdir = $(libdir)/@PACKAGE@ 22 pkglibexecdir = $(libexecdir)/@PACKAGE@ 23 top_builddir = ../.. 23 24 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd 25 INSTALL = @INSTALL@ 24 26 install_sh_DATA = $(install_sh) -c -m 644 25 27 install_sh_PROGRAM = $(install_sh) -c … … 43 45 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ 44 46 $(ACLOCAL_M4) 45 mkinstalldirs = $( install_sh) -d47 mkinstalldirs = $(SHELL) $(install_sh) -d 46 48 CONFIG_HEADER = $(top_builddir)/config.h 47 49 CONFIG_CLEAN_FILES = 48 CONFIG_CLEAN_VPATH_FILES =49 50 SOURCES = 50 51 DIST_SOURCES = … … 54 55 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 55 56 ACLOCAL = @ACLOCAL@ 57 AMDEP_FALSE = @AMDEP_FALSE@ 58 AMDEP_TRUE = @AMDEP_TRUE@ 56 59 AMTAR = @AMTAR@ 57 60 AUTOCONF = @AUTOCONF@ … … 70 73 ECHO_T = @ECHO_T@ 71 74 EXEEXT = @EXEEXT@ 72 INSTALL = @INSTALL@73 75 INSTALL_DATA = @INSTALL_DATA@ 74 76 INSTALL_PROGRAM = @INSTALL_PROGRAM@ … … 81 83 LTLIBOBJS = @LTLIBOBJS@ 82 84 MAKEINFO = @MAKEINFO@ 83 MKDIR_P = @MKDIR_P@84 85 OBJEXT = @OBJEXT@ 85 86 PACKAGE = @PACKAGE@ … … 88 89 PACKAGE_STRING = @PACKAGE_STRING@ 89 90 PACKAGE_TARNAME = @PACKAGE_TARNAME@ 90 PACKAGE_URL = @PACKAGE_URL@91 91 PACKAGE_VERSION = @PACKAGE_VERSION@ 92 92 PATH_SEPARATOR = @PATH_SEPARATOR@ … … 98 98 STRIP = @STRIP@ 99 99 VERSION = @VERSION@ 100 abs_builddir = @abs_builddir@101 abs_srcdir = @abs_srcdir@102 abs_top_builddir = @abs_top_builddir@103 abs_top_srcdir = @abs_top_srcdir@104 100 ac_ct_CC = @ac_ct_CC@ 101 am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ 102 am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ 105 103 am__include = @am__include@ 106 104 am__leading_dot = @am__leading_dot@ … … 115 113 build_os = @build_os@ 116 114 build_vendor = @build_vendor@ 117 builddir = @builddir@118 115 datadir = @datadir@ 119 116 datarootdir = @datarootdir@ … … 143 140 sbindir = @sbindir@ 144 141 sharedstatedir = @sharedstatedir@ 145 srcdir = @srcdir@146 142 sysconfdir = @sysconfdir@ 147 143 target_alias = @target_alias@ 148 top_build_prefix = @top_build_prefix@149 top_builddir = @top_builddir@150 top_srcdir = @top_srcdir@151 144 noinst_HEADERS = ocat_cygwin.h openbsd_netinet_icmp6.h openbsd_netinet_if_ether.h openbsd_netinet_ip6.h 152 145 all: all-am … … 157 150 case '$(am__configure_deps)' in \ 158 151 *$$dep*) \ 159 ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh )\160 && { if test -f $@; then exit 0; else break; fi; }; \152 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ 153 && exit 0; \ 161 154 exit 1;; \ 162 155 esac; \ 163 156 done; \ 164 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/cygwin/Makefile'; \165 $(am__cd)$(top_srcdir) && \166 $(AUTOMAKE) --gnu src/cygwin/Makefile157 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/cygwin/Makefile'; \ 158 cd $(top_srcdir) && \ 159 $(AUTOMAKE) --gnu src/cygwin/Makefile 167 160 .PRECIOUS: Makefile 168 161 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status … … 182 175 $(ACLOCAL_M4): $(am__aclocal_m4_deps) 183 176 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh 184 $(am__aclocal_m4_deps):177 uninstall-info-am: 185 178 186 179 ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) … … 189 182 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ 190 183 done | \ 191 $(AWK) ' { files[$$0] = 1; nonempty= 1; } \192 END { if (nonempty) { for (i in files) print i; }; }'`; \184 $(AWK) ' { files[$$0] = 1; } \ 185 END { for (i in files) print i; }'`; \ 193 186 mkid -fID $$unique 194 187 tags: TAGS … … 196 189 TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ 197 190 $(TAGS_FILES) $(LISP) 198 set x; \191 tags=; \ 199 192 here=`pwd`; \ 200 193 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ … … 202 195 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ 203 196 done | \ 204 $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ 205 END { if (nonempty) { for (i in files) print i; }; }'`; \ 206 shift; \ 207 if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ 197 $(AWK) ' { files[$$0] = 1; } \ 198 END { for (i in files) print i; }'`; \ 199 if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ 208 200 test -n "$$unique" || unique=$$empty_fix; \ 209 if test $$# -gt 0; then \ 210 $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ 211 "$$@" $$unique; \ 212 else \ 213 $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ 214 $$unique; \ 215 fi; \ 201 $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ 202 $$tags $$unique; \ 216 203 fi 217 204 ctags: CTAGS 218 205 CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ 219 206 $(TAGS_FILES) $(LISP) 207 tags=; \ 208 here=`pwd`; \ 220 209 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ 221 210 unique=`for i in $$list; do \ 222 211 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ 223 212 done | \ 224 $(AWK) ' { files[$$0] = 1; nonempty= 1; } \225 END { if (nonempty) { for (i in files) print i; }; }'`; \226 test -z "$(CTAGS_ARGS)$$ unique" \213 $(AWK) ' { files[$$0] = 1; } \ 214 END { for (i in files) print i; }'`; \ 215 test -z "$(CTAGS_ARGS)$$tags$$unique" \ 227 216 || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ 228 $$ unique217 $$tags $$unique 229 218 230 219 GTAGS: 231 220 here=`$(am__cd) $(top_builddir) && pwd` \ 232 && $(am__cd)$(top_srcdir) \233 && gtags -i $(GTAGS_ARGS) "$$here"221 && cd $(top_srcdir) \ 222 && gtags -i $(GTAGS_ARGS) $$here 234 223 235 224 distclean-tags: … … 237 226 238 227 distdir: $(DISTFILES) 239 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ 240 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ 241 list='$(DISTFILES)'; \ 242 dist_files=`for file in $$list; do echo $$file; done | \ 243 sed -e "s|^$$srcdirstrip/||;t" \ 244 -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ 245 case $$dist_files in \ 246 */*) $(MKDIR_P) `echo "$$dist_files" | \ 247 sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ 248 sort -u` ;; \ 249 esac; \ 250 for file in $$dist_files; do \ 228 @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ 229 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ 230 list='$(DISTFILES)'; for file in $$list; do \ 231 case $$file in \ 232 $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ 233 $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ 234 esac; \ 251 235 if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ 236 dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ 237 if test "$$dir" != "$$file" && test "$$dir" != "."; then \ 238 dir="/$$dir"; \ 239 $(mkdir_p) "$(distdir)$$dir"; \ 240 else \ 241 dir=''; \ 242 fi; \ 252 243 if test -d $$d/$$file; then \ 253 dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ 254 if test -d "$(distdir)/$$file"; then \ 255 find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ 244 if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ 245 cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ 256 246 fi; \ 257 if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ 258 cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ 259 find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ 260 fi; \ 261 cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ 247 cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ 262 248 else \ 263 test -f "$(distdir)/$$file"\264 || cp -p $$d/$$file "$(distdir)/$$file"\249 test -f $(distdir)/$$file \ 250 || cp -p $$d/$$file $(distdir)/$$file \ 265 251 || exit 1; \ 266 252 fi; \ … … 290 276 distclean-generic: 291 277 -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) 292 -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)293 278 294 279 maintainer-clean-generic: … … 309 294 html: html-am 310 295 311 html-am:312 313 296 info: info-am 314 297 … … 317 300 install-data-am: 318 301 319 install-dvi: install-dvi-am320 321 install-dvi-am:322 323 302 install-exec-am: 324 303 325 install-html: install-html-am326 327 install-html-am:328 329 304 install-info: install-info-am 330 305 331 install-info-am:332 333 306 install-man: 334 335 install-pdf: install-pdf-am336 337 install-pdf-am:338 339 install-ps: install-ps-am340 341 install-ps-am:342 307 343 308 installcheck-am: … … 359 324 ps-am: 360 325 361 uninstall-am: 362 363 .MAKE: install-am install-strip 326 uninstall-am: uninstall-info-am 364 327 365 328 .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ 366 329 ctags distclean distclean-generic distclean-tags distdir dvi \ 367 330 dvi-am html html-am info info-am install install-am \ 368 install-data install-data-am install-dvi install-dvi-am \ 369 install-exec install-exec-am install-html install-html-am \ 370 install-info install-info-am install-man install-pdf \ 371 install-pdf-am install-ps install-ps-am install-strip \ 331 install-data install-data-am install-exec install-exec-am \ 332 install-info install-info-am install-man install-strip \ 372 333 installcheck installcheck-am installdirs maintainer-clean \ 373 334 maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ 374 pdf-am ps ps-am tags uninstall uninstall-am 375 335 pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am 376 336 377 337 # Tell versions [3.59,3.63) of GNU make to not export all variables.
Note: See TracChangeset
for help on using the changeset viewer.
