ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/plugins/cfpython/Makefile.in
(Generate patch)

Comparing deliantra/server/plugins/cfpython/Makefile.in (file contents):
Revision 1.2 by root, Fri Feb 3 07:25:25 2006 UTC vs.
Revision 1.4 by root, Thu Mar 16 21:08:20 2006 UTC

37# along with this program; if not, write to the Free Software 37# along with this program; if not, write to the Free Software
38# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 38# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
39# 39#
40# The author can be reached via e-mail to mwedel@sonic.net 40# The author can be reached via e-mail to mwedel@sonic.net
41 41
42
43srcdir = @srcdir@ 42srcdir = @srcdir@
44top_srcdir = @top_srcdir@ 43top_srcdir = @top_srcdir@
45VPATH = @srcdir@ 44VPATH = @srcdir@
46pkgdatadir = $(datadir)/@PACKAGE@ 45pkgdatadir = $(datadir)/@PACKAGE@
47pkglibdir = $(libdir)/@PACKAGE@ 46pkglibdir = $(libdir)/@PACKAGE@
61PRE_UNINSTALL = : 60PRE_UNINSTALL = :
62POST_UNINSTALL = : 61POST_UNINSTALL = :
63build_triplet = @build@ 62build_triplet = @build@
64host_triplet = @host@ 63host_triplet = @host@
65subdir = plugins/cfpython 64subdir = plugins/cfpython
66DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \ 65DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
67 $(srcdir)/Makefile.in
68ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 66ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
69am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \ 67am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \
70 $(top_srcdir)/ltoptions.m4 $(top_srcdir)/ltsugar.m4 \ 68 $(top_srcdir)/ltoptions.m4 $(top_srcdir)/ltsugar.m4 \
71 $(top_srcdir)/ltversion.m4 $(top_srcdir)/acinclude.m4 \ 69 $(top_srcdir)/ltversion.m4 $(top_srcdir)/acinclude.m4 \
72 $(top_srcdir)/configure.ac 70 $(top_srcdir)/configure.ac
101CCLD = $(CC) 99CCLD = $(CC)
102LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ 100LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
103 $(AM_LDFLAGS) $(LDFLAGS) -o $@ 101 $(AM_LDFLAGS) $(LDFLAGS) -o $@
104SOURCES = $(cfpython_la_SOURCES) 102SOURCES = $(cfpython_la_SOURCES)
105DIST_SOURCES = $(cfpython_la_SOURCES) 103DIST_SOURCES = $(cfpython_la_SOURCES)
106HEADERS = $(noinst_HEADERS) 104RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
105 html-recursive info-recursive install-data-recursive \
106 install-exec-recursive install-info-recursive \
107 install-recursive installcheck-recursive installdirs-recursive \
108 pdf-recursive ps-recursive uninstall-info-recursive \
109 uninstall-recursive
107ETAGS = etags 110ETAGS = etags
108CTAGS = ctags 111CTAGS = ctags
112DIST_SUBDIRS = $(SUBDIRS)
109DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 113DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
110ACLOCAL = @ACLOCAL@ 114ACLOCAL = @ACLOCAL@
111AMDEP_FALSE = @AMDEP_FALSE@ 115AMDEP_FALSE = @AMDEP_FALSE@
112AMDEP_TRUE = @AMDEP_TRUE@ 116AMDEP_TRUE = @AMDEP_TRUE@
113AMTAR = @AMTAR@ 117AMTAR = @AMTAR@
237sysconfdir = @sysconfdir@ 241sysconfdir = @sysconfdir@
238target_alias = @target_alias@ 242target_alias = @target_alias@
239x_includes = @x_includes@ 243x_includes = @x_includes@
240x_libraries = @x_libraries@ 244x_libraries = @x_libraries@
241plugindir = $(pkglibdir)/plugins 245plugindir = $(pkglibdir)/plugins
242noinst_HEADERS = include/cfpython.h ../common/include/plugin_common.h 246SUBDIRS = include
243@PYTHON_PLUGIN_FALSE@plugin_LTLIBRARIES = 247@PYTHON_PLUGIN_FALSE@plugin_LTLIBRARIES =
244@PYTHON_PLUGIN_TRUE@plugin_LTLIBRARIES = cfpython.la 248@PYTHON_PLUGIN_TRUE@plugin_LTLIBRARIES = cfpython.la
245cfpython_la_SOURCES = cfpython.c\ 249cfpython_la_SOURCES = cfpython.c\
246 cfpython_archetype.c\ 250 cfpython_archetype.c\
247 cfpython_object.c\ 251 cfpython_object.c\
257 cfpython_region.c\ 261 cfpython_region.c\
258 cfpython_map.c 262 cfpython_map.c
259 263
260cfpython_la_LIBADD = @PYTHON_LIB@ @PY_LIBS@ 264cfpython_la_LIBADD = @PYTHON_LIB@ @PY_LIBS@
261cfpython_la_LDFLAGS = -module -avoid-version -Xlinker -export-dynamic -rdynamic -Xlinker -Bsymbolic 265cfpython_la_LDFLAGS = -module -avoid-version -Xlinker -export-dynamic -rdynamic -Xlinker -Bsymbolic
262AM_CPPFLAGS = -I$(srcdir)/include -I../common/include -I$(top_srcdir)/include @PY_INCLUDES@ 266AM_CPPFLAGS = -I$(srcdir)/include -I$(top_srcdir)/plugins/common/include -I$(top_srcdir)/include @PY_INCLUDES@
263all: all-am 267all: all-recursive
264 268
265.SUFFIXES: 269.SUFFIXES:
266.SUFFIXES: .c .lo .o .obj 270.SUFFIXES: .c .lo .o .obj
267$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 271$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
268 @for dep in $?; do \ 272 @for dep in $?; do \
373 377
374distclean-libtool: 378distclean-libtool:
375 -rm -f libtool 379 -rm -f libtool
376uninstall-info-am: 380uninstall-info-am:
377 381
382# This directory's subdirectories are mostly independent; you can cd
383# into them and run `make' without going through this Makefile.
384# To change the values of `make' variables: instead of editing Makefiles,
385# (1) if the variable is set in `config.status', edit `config.status'
386# (which will cause the Makefiles to be regenerated when you run `make');
387# (2) otherwise, pass the desired values on the `make' command line.
388$(RECURSIVE_TARGETS):
389 @failcom='exit 1'; \
390 for f in x $$MAKEFLAGS; do \
391 case $$f in \
392 *=* | --[!k]*);; \
393 *k*) failcom='fail=yes';; \
394 esac; \
395 done; \
396 dot_seen=no; \
397 target=`echo $@ | sed s/-recursive//`; \
398 list='$(SUBDIRS)'; for subdir in $$list; do \
399 echo "Making $$target in $$subdir"; \
400 if test "$$subdir" = "."; then \
401 dot_seen=yes; \
402 local_target="$$target-am"; \
403 else \
404 local_target="$$target"; \
405 fi; \
406 (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
407 || eval $$failcom; \
408 done; \
409 if test "$$dot_seen" = "no"; then \
410 $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
411 fi; test -z "$$fail"
412
413mostlyclean-recursive clean-recursive distclean-recursive \
414maintainer-clean-recursive:
415 @failcom='exit 1'; \
416 for f in x $$MAKEFLAGS; do \
417 case $$f in \
418 *=* | --[!k]*);; \
419 *k*) failcom='fail=yes';; \
420 esac; \
421 done; \
422 dot_seen=no; \
423 case "$@" in \
424 distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
425 *) list='$(SUBDIRS)' ;; \
426 esac; \
427 rev=''; for subdir in $$list; do \
428 if test "$$subdir" = "."; then :; else \
429 rev="$$subdir $$rev"; \
430 fi; \
431 done; \
432 rev="$$rev ."; \
433 target=`echo $@ | sed s/-recursive//`; \
434 for subdir in $$rev; do \
435 echo "Making $$target in $$subdir"; \
436 if test "$$subdir" = "."; then \
437 local_target="$$target-am"; \
438 else \
439 local_target="$$target"; \
440 fi; \
441 (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
442 || eval $$failcom; \
443 done && test -z "$$fail"
444tags-recursive:
445 list='$(SUBDIRS)'; for subdir in $$list; do \
446 test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
447 done
448ctags-recursive:
449 list='$(SUBDIRS)'; for subdir in $$list; do \
450 test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
451 done
452
378ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) 453ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
379 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ 454 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
380 unique=`for i in $$list; do \ 455 unique=`for i in $$list; do \
381 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ 456 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
382 done | \ 457 done | \
383 $(AWK) ' { files[$$0] = 1; } \ 458 $(AWK) ' { files[$$0] = 1; } \
384 END { for (i in files) print i; }'`; \ 459 END { for (i in files) print i; }'`; \
385 mkid -fID $$unique 460 mkid -fID $$unique
386tags: TAGS 461tags: TAGS
387 462
388TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ 463TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
389 $(TAGS_FILES) $(LISP) 464 $(TAGS_FILES) $(LISP)
390 tags=; \ 465 tags=; \
391 here=`pwd`; \ 466 here=`pwd`; \
467 if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
468 include_option=--etags-include; \
469 empty_fix=.; \
470 else \
471 include_option=--include; \
472 empty_fix=; \
473 fi; \
474 list='$(SUBDIRS)'; for subdir in $$list; do \
475 if test "$$subdir" = .; then :; else \
476 test ! -f $$subdir/TAGS || \
477 tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
478 fi; \
479 done; \
392 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ 480 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
393 unique=`for i in $$list; do \ 481 unique=`for i in $$list; do \
394 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ 482 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
395 done | \ 483 done | \
396 $(AWK) ' { files[$$0] = 1; } \ 484 $(AWK) ' { files[$$0] = 1; } \
399 test -n "$$unique" || unique=$$empty_fix; \ 487 test -n "$$unique" || unique=$$empty_fix; \
400 $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ 488 $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
401 $$tags $$unique; \ 489 $$tags $$unique; \
402 fi 490 fi
403ctags: CTAGS 491ctags: CTAGS
404CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ 492CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
405 $(TAGS_FILES) $(LISP) 493 $(TAGS_FILES) $(LISP)
406 tags=; \ 494 tags=; \
407 here=`pwd`; \ 495 here=`pwd`; \
408 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ 496 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
409 unique=`for i in $$list; do \ 497 unique=`for i in $$list; do \
422 510
423distclean-tags: 511distclean-tags:
424 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags 512 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
425 513
426distdir: $(DISTFILES) 514distdir: $(DISTFILES)
427 $(mkdir_p) $(distdir)/../common/include $(distdir)/include
428 @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ 515 @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
429 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ 516 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
430 list='$(DISTFILES)'; for file in $$list; do \ 517 list='$(DISTFILES)'; for file in $$list; do \
431 case $$file in \ 518 case $$file in \
432 $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ 519 $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
449 test -f $(distdir)/$$file \ 536 test -f $(distdir)/$$file \
450 || cp -p $$d/$$file $(distdir)/$$file \ 537 || cp -p $$d/$$file $(distdir)/$$file \
451 || exit 1; \ 538 || exit 1; \
452 fi; \ 539 fi; \
453 done 540 done
541 list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
542 if test "$$subdir" = .; then :; else \
543 test -d "$(distdir)/$$subdir" \
544 || $(mkdir_p) "$(distdir)/$$subdir" \
545 || exit 1; \
546 distdir=`$(am__cd) $(distdir) && pwd`; \
547 top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
548 (cd $$subdir && \
549 $(MAKE) $(AM_MAKEFLAGS) \
550 top_distdir="$$top_distdir" \
551 distdir="$$distdir/$$subdir" \
552 distdir) \
553 || exit 1; \
554 fi; \
555 done
454check-am: all-am 556check-am: all-am
455check: check-am 557check: check-recursive
456all-am: Makefile $(LTLIBRARIES) $(HEADERS) 558all-am: Makefile $(LTLIBRARIES)
559installdirs: installdirs-recursive
457installdirs: 560installdirs-am:
458 for dir in "$(DESTDIR)$(plugindir)"; do \ 561 for dir in "$(DESTDIR)$(plugindir)"; do \
459 test -z "$$dir" || $(mkdir_p) "$$dir"; \ 562 test -z "$$dir" || $(mkdir_p) "$$dir"; \
460 done 563 done
461install: install-am 564install: install-recursive
462install-exec: install-exec-am 565install-exec: install-exec-recursive
463install-data: install-data-am 566install-data: install-data-recursive
464uninstall: uninstall-am 567uninstall: uninstall-recursive
465 568
466install-am: all-am 569install-am: all-am
467 @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am 570 @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
468 571
469installcheck: installcheck-am 572installcheck: installcheck-recursive
470install-strip: 573install-strip:
471 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ 574 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
472 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ 575 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
473 `test -z '$(STRIP)' || \ 576 `test -z '$(STRIP)' || \
474 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install 577 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
480 -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) 583 -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
481 584
482maintainer-clean-generic: 585maintainer-clean-generic:
483 @echo "This command is intended for maintainers to use" 586 @echo "This command is intended for maintainers to use"
484 @echo "it deletes files that may require special tools to rebuild." 587 @echo "it deletes files that may require special tools to rebuild."
485clean: clean-am 588clean: clean-recursive
486 589
487clean-am: clean-generic clean-libtool clean-pluginLTLIBRARIES \ 590clean-am: clean-generic clean-libtool clean-pluginLTLIBRARIES \
488 mostlyclean-am 591 mostlyclean-am
489 592
490distclean: distclean-am 593distclean: distclean-recursive
491 -rm -rf ./$(DEPDIR) 594 -rm -rf ./$(DEPDIR)
492 -rm -f Makefile 595 -rm -f Makefile
493distclean-am: clean-am distclean-compile distclean-generic \ 596distclean-am: clean-am distclean-compile distclean-generic \
494 distclean-libtool distclean-tags 597 distclean-libtool distclean-tags
495 598
496dvi: dvi-am 599dvi: dvi-recursive
497 600
498dvi-am: 601dvi-am:
499 602
500html: html-am 603html: html-recursive
501 604
502info: info-am 605info: info-recursive
503 606
504info-am: 607info-am:
505 608
506install-data-am: install-pluginLTLIBRARIES 609install-data-am: install-pluginLTLIBRARIES
507 610
508install-exec-am: 611install-exec-am:
509 612
510install-info: install-info-am 613install-info: install-info-recursive
511 614
512install-man: 615install-man:
513 616
514installcheck-am: 617installcheck-am:
515 618
516maintainer-clean: maintainer-clean-am 619maintainer-clean: maintainer-clean-recursive
517 -rm -rf ./$(DEPDIR) 620 -rm -rf ./$(DEPDIR)
518 -rm -f Makefile 621 -rm -f Makefile
519maintainer-clean-am: distclean-am maintainer-clean-generic 622maintainer-clean-am: distclean-am maintainer-clean-generic
520 623
521mostlyclean: mostlyclean-am 624mostlyclean: mostlyclean-recursive
522 625
523mostlyclean-am: mostlyclean-compile mostlyclean-generic \ 626mostlyclean-am: mostlyclean-compile mostlyclean-generic \
524 mostlyclean-libtool 627 mostlyclean-libtool
525 628
526pdf: pdf-am 629pdf: pdf-recursive
527 630
528pdf-am: 631pdf-am:
529 632
530ps: ps-am 633ps: ps-recursive
531 634
532ps-am: 635ps-am:
533 636
534uninstall-am: uninstall-info-am uninstall-pluginLTLIBRARIES 637uninstall-am: uninstall-info-am uninstall-pluginLTLIBRARIES
535 638
536.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ 639uninstall-info: uninstall-info-recursive
537 clean-libtool clean-pluginLTLIBRARIES ctags distclean \ 640
641.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \
642 clean clean-generic clean-libtool clean-pluginLTLIBRARIES \
643 clean-recursive ctags ctags-recursive distclean \
538 distclean-compile distclean-generic distclean-libtool \ 644 distclean-compile distclean-generic distclean-libtool \
539 distclean-tags distdir dvi dvi-am html html-am info info-am \ 645 distclean-recursive distclean-tags distdir dvi dvi-am html \
540 install install-am install-data install-data-am install-exec \ 646 html-am info info-am install install-am install-data \
541 install-exec-am install-info install-info-am install-man \ 647 install-data-am install-exec install-exec-am install-info \
542 install-pluginLTLIBRARIES install-strip installcheck \ 648 install-info-am install-man install-pluginLTLIBRARIES \
543 installcheck-am installdirs maintainer-clean \ 649 install-strip installcheck installcheck-am installdirs \
650 installdirs-am maintainer-clean maintainer-clean-generic \
544 maintainer-clean-generic mostlyclean mostlyclean-compile \ 651 maintainer-clean-recursive mostlyclean mostlyclean-compile \
545 mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ 652 mostlyclean-generic mostlyclean-libtool mostlyclean-recursive \
546 tags uninstall uninstall-am uninstall-info-am \ 653 pdf pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \
547 uninstall-pluginLTLIBRARIES 654 uninstall-info-am uninstall-pluginLTLIBRARIES
548 655
549 656
550proto: 657proto:
551 cproto -D__CEXTRACT__ -o include/cfpython_proto.h $(CPPFLAGS) $(AM_CPPFLAGS) \ 658 cproto -D__CEXTRACT__ -o include/cfpython_proto.h $(CPPFLAGS) $(AM_CPPFLAGS) \
552 `echo $(cfpython_la_CPSOURCES) " " | $(AWK) -v RS=" " '/.c$$/ { print }'` 659 `echo $(cfpython_la_CPSOURCES) " " | $(AWK) -v RS=" " '/.c$$/ { print }'`

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines