1) Fixed 'install' and 'dist-*' make targets.
2) Removed unused files. git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/trunk/supertuxkart@2260 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
parent
a29ed474f4
commit
15b9ca64c6
@ -394,6 +394,7 @@ AC_CONFIG_FILES([ \
|
||||
Makefile \
|
||||
data/Makefile \
|
||||
data/fonts/Makefile \
|
||||
data/grandprix/Makefile \
|
||||
data/herrings/Makefile \
|
||||
data/karts/Makefile \
|
||||
data/models/Makefile \
|
||||
@ -410,8 +411,6 @@ AC_CONFIG_FILES([ \
|
||||
src/bullet/src/Makefile \
|
||||
src/bullet/Demos/OpenGL/Makefile \
|
||||
src/enet/Makefile \
|
||||
src/enet/include/Makefile \
|
||||
src/enet/include/enet/Makefile
|
||||
])
|
||||
AC_OUTPUT
|
||||
echo -e $SUMMARY
|
||||
|
@ -1,12 +1,13 @@
|
||||
# data/
|
||||
|
||||
SUBDIRS = fonts herrings karts models music po sfx textures tracks
|
||||
SUBDIRS = fonts herrings karts models music po sfx textures tracks grandprix
|
||||
pkgdatadir = $(datadir)/games/@PACKAGE@/data
|
||||
|
||||
pkgdata_DATA = $(shell find $(srcdir) -name "*.data") \
|
||||
$(shell find $(srcdir) -name "*.herring") \
|
||||
$(shell find $(srcdir) -name "*.projectile") \
|
||||
$(shell find $(srcdir) -name "*.cup") \
|
||||
$(shell find $(srcdir) -maxdepth 1 -name "*.challenge") \
|
||||
$(shell find $(srcdir) -name "*.collectable") \
|
||||
$(shell find $(srcdir) -name "*.projectile") \
|
||||
CREDITS licenses \
|
||||
|
@ -4,4 +4,4 @@ SUBDIRS = players_manual
|
||||
|
||||
pkgdatadir = $(datadir)/doc/@PACKAGE@/
|
||||
|
||||
EXTRA_DIST = conventions.txt implementation.txt robots.txt
|
||||
EXTRA_DIST = conventions.txt implementation.txt robots.txt challenges_dependencies.odg
|
||||
|
@ -37,13 +37,13 @@ supertuxkart_SOURCES = main.cpp \
|
||||
network/remote_kart_info.hpp network/character_selected_message.hpp \
|
||||
network/race_start_message.hpp \
|
||||
network/connect_message.hpp network/connect_message.cpp \
|
||||
network.num_players_message.hpp network/world_loaded_message.hpp \
|
||||
network/num_players_message.hpp network/world_loaded_message.hpp \
|
||||
network/connect_message.hpp network/character_info_message.hpp \
|
||||
network/kart_update_message.hpp network/kart_update_message.cpp \
|
||||
network/kart_control_message.hpp network/kart_control_message.cpp \
|
||||
network/flyable_info.hpp network/herring_info.hpp \
|
||||
network/race_state.hpp network/race_state.cpp \
|
||||
utils/random_genertaor.hpp utils/random_generator.cpp \
|
||||
utils/random_generator.hpp utils/random_generator.cpp \
|
||||
material_manager.cpp material_manager.hpp \
|
||||
grand_prix_manager.cpp grand_prix_manager.hpp \
|
||||
attachment.cpp attachment.hpp \
|
||||
@ -149,6 +149,10 @@ supertuxkart_SOURCES = main.cpp \
|
||||
replay_recorder.hpp replay_recorder.cpp \
|
||||
ide/vc8/supertuxkart.sln ide/vc8/supertuxkart.vcproj \
|
||||
ide/vc8/bullet_lib.vcproj ide/vc8/README
|
||||
ide/vc9/supertuxkart.sln ide/vc9/supertuxkart.vcproj \
|
||||
ide/vc9/bullet_lib.vcproj ide/vc9/enet.vcproj \
|
||||
ide/vc9/README \
|
||||
Xcode/STK_XCode.xcodeproj/project/pbxproj
|
||||
|
||||
|
||||
# Link in the specific gcc 4.1 bug work around
|
||||
|
@ -1,5 +1,15 @@
|
||||
lib_LIBRARIES = libenet.a
|
||||
libenet_a_SOURCES = host.c list.c callbacks.c packet.c peer.c protocol.c unix.c win32.c
|
||||
noinst_LIBRARIES = libenet.a
|
||||
EXTRA_DIST = ChangeLog configure design.txt Doxyfile LICENSE tutorial.txt
|
||||
libenet_a_SOURCES = host.c list.c callbacks.c packet.c peer.c protocol.c unix.c win32.c \
|
||||
include/enet/types.h \
|
||||
include/enet/list.h \
|
||||
include/enet/utility.h \
|
||||
include/enet/time.h \
|
||||
include/enet/callbacks.h \
|
||||
include/enet/unix.h \
|
||||
include/enet/win32.h \
|
||||
include/enet/protocol.h \
|
||||
include/enet/enet.h
|
||||
|
||||
INCLUDES = -Iinclude/
|
||||
|
||||
SUBDIRS = include
|
||||
|
@ -0,0 +1,423 @@
|
||||
# Makefile.in generated by automake 1.9.6 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||||
# 2003, 2004, 2005 Free Software Foundation, Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
@SET_MAKE@
|
||||
|
||||
srcdir = @srcdir@
|
||||
top_srcdir = @top_srcdir@
|
||||
VPATH = @srcdir@
|
||||
pkgdatadir = $(datadir)/@PACKAGE@
|
||||
pkglibdir = $(libdir)/@PACKAGE@
|
||||
pkgincludedir = $(includedir)/@PACKAGE@
|
||||
top_builddir = ../..
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
INSTALL = @INSTALL@
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = @build@
|
||||
host_triplet = @host@
|
||||
target_triplet = @target@
|
||||
subdir = src/enet
|
||||
DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
|
||||
ChangeLog depcomp install-sh missing
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
|
||||
$(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
mkinstalldirs = $(install_sh) -d
|
||||
CONFIG_CLEAN_FILES =
|
||||
LIBRARIES = $(noinst_LIBRARIES)
|
||||
AR = ar
|
||||
ARFLAGS = cru
|
||||
libenet_a_AR = $(AR) $(ARFLAGS)
|
||||
libenet_a_LIBADD =
|
||||
am_libenet_a_OBJECTS = host.$(OBJEXT) list.$(OBJEXT) \
|
||||
callbacks.$(OBJEXT) packet.$(OBJEXT) peer.$(OBJEXT) \
|
||||
protocol.$(OBJEXT) unix.$(OBJEXT) win32.$(OBJEXT)
|
||||
libenet_a_OBJECTS = $(am_libenet_a_OBJECTS)
|
||||
DEFAULT_INCLUDES = -I. -I$(srcdir)
|
||||
depcomp = $(SHELL) $(top_srcdir)/depcomp
|
||||
am__depfiles_maybe = depfiles
|
||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
CCLD = $(CC)
|
||||
LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
|
||||
SOURCES = $(libenet_a_SOURCES)
|
||||
DIST_SOURCES = $(libenet_a_SOURCES)
|
||||
ETAGS = etags
|
||||
CTAGS = ctags
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = @ACLOCAL@
|
||||
AMDEP_FALSE = @AMDEP_FALSE@
|
||||
AMDEP_TRUE = @AMDEP_TRUE@
|
||||
AMTAR = @AMTAR@
|
||||
AUTOCONF = @AUTOCONF@
|
||||
AUTOHEADER = @AUTOHEADER@
|
||||
AUTOMAKE = @AUTOMAKE@
|
||||
AWK = @AWK@
|
||||
BULLETTREE = @BULLETTREE@
|
||||
CC = @CC@
|
||||
CCDEPMODE = @CCDEPMODE@
|
||||
CFLAGS = @CFLAGS@
|
||||
CPP = @CPP@
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
CXX = @CXX@
|
||||
CXXCPP = @CXXCPP@
|
||||
CXXDEPMODE = @CXXDEPMODE@
|
||||
CXXFLAGS = @CXXFLAGS@
|
||||
CYGPATH_W = @CYGPATH_W@
|
||||
DEFS = @DEFS@
|
||||
DEPDIR = @DEPDIR@
|
||||
ECHO_C = @ECHO_C@
|
||||
ECHO_N = @ECHO_N@
|
||||
ECHO_T = @ECHO_T@
|
||||
EGREP = @EGREP@
|
||||
ENETTREE = @ENETTREE@
|
||||
EXEEXT = @EXEEXT@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
||||
LDFLAGS = @LDFLAGS@
|
||||
LIBOBJS = @LIBOBJS@
|
||||
LIBS = @LIBS@
|
||||
LTLIBOBJS = @LTLIBOBJS@
|
||||
MAKEINFO = @MAKEINFO@
|
||||
NOREGMOVE = @NOREGMOVE@
|
||||
OBJEXT = @OBJEXT@
|
||||
PACKAGE = @PACKAGE@
|
||||
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
||||
PACKAGE_NAME = @PACKAGE_NAME@
|
||||
PACKAGE_STRING = @PACKAGE_STRING@
|
||||
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
RANLIB = @RANLIB@
|
||||
SET_MAKE = @SET_MAKE@
|
||||
SHELL = @SHELL@
|
||||
STRIP = @STRIP@
|
||||
VERSION = @VERSION@
|
||||
ac_ct_CC = @ac_ct_CC@
|
||||
ac_ct_CXX = @ac_ct_CXX@
|
||||
ac_ct_RANLIB = @ac_ct_RANLIB@
|
||||
ac_ct_STRIP = @ac_ct_STRIP@
|
||||
am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
|
||||
am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
|
||||
am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
|
||||
am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
|
||||
am__include = @am__include@
|
||||
am__leading_dot = @am__leading_dot@
|
||||
am__quote = @am__quote@
|
||||
am__tar = @am__tar@
|
||||
am__untar = @am__untar@
|
||||
bindir = @bindir@
|
||||
build = @build@
|
||||
build_alias = @build_alias@
|
||||
build_cpu = @build_cpu@
|
||||
build_os = @build_os@
|
||||
build_vendor = @build_vendor@
|
||||
bullet_LIBS = @bullet_LIBS@
|
||||
datadir = @datadir@
|
||||
enet_LIBS = @enet_LIBS@
|
||||
exec_prefix = @exec_prefix@
|
||||
have_sdl_config = @have_sdl_config@
|
||||
have_svnversion = @have_svnversion@
|
||||
host = @host@
|
||||
host_alias = @host_alias@
|
||||
host_cpu = @host_cpu@
|
||||
host_os = @host_os@
|
||||
host_vendor = @host_vendor@
|
||||
includedir = @includedir@
|
||||
infodir = @infodir@
|
||||
install_sh = @install_sh@
|
||||
libdir = @libdir@
|
||||
libexecdir = @libexecdir@
|
||||
localstatedir = @localstatedir@
|
||||
mandir = @mandir@
|
||||
mkdir_p = @mkdir_p@
|
||||
oldincludedir = @oldincludedir@
|
||||
openal_LIBS = @openal_LIBS@
|
||||
opengl_LIBS = @opengl_LIBS@
|
||||
prefix = @prefix@
|
||||
program_transform_name = @program_transform_name@
|
||||
sbindir = @sbindir@
|
||||
sdl_LIBS = @sdl_LIBS@
|
||||
sharedstatedir = @sharedstatedir@
|
||||
sysconfdir = @sysconfdir@
|
||||
target = @target@
|
||||
target_alias = @target_alias@
|
||||
target_cpu = @target_cpu@
|
||||
target_os = @target_os@
|
||||
target_vendor = @target_vendor@
|
||||
noinst_LIBRARIES = libenet.a
|
||||
EXTRA_DIST = ChangeLog configure design.txt Doxyfile LICENSE tutorial.txt
|
||||
libenet_a_SOURCES = host.c list.c callbacks.c packet.c peer.c protocol.c unix.c win32.c \
|
||||
include/enet/types.h \
|
||||
include/enet/list.h \
|
||||
include/enet/utility.h \
|
||||
include/enet/time.h \
|
||||
include/enet/callbacks.h \
|
||||
include/enet/unix.h \
|
||||
include/enet/win32.h \
|
||||
include/enet/protocol.h \
|
||||
include/enet/enet.h
|
||||
|
||||
INCLUDES = -Iinclude/
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .c .o .obj
|
||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
|
||||
&& exit 0; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/enet/Makefile'; \
|
||||
cd $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu src/enet/Makefile
|
||||
.PRECIOUS: Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
$(top_srcdir)/configure: $(am__configure_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
clean-noinstLIBRARIES:
|
||||
-test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)
|
||||
libenet.a: $(libenet_a_OBJECTS) $(libenet_a_DEPENDENCIES)
|
||||
-rm -f libenet.a
|
||||
$(libenet_a_AR) libenet.a $(libenet_a_OBJECTS) $(libenet_a_LIBADD)
|
||||
$(RANLIB) libenet.a
|
||||
|
||||
mostlyclean-compile:
|
||||
-rm -f *.$(OBJEXT)
|
||||
|
||||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/callbacks.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/host.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/list.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/packet.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/peer.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/protocol.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/unix.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/win32.Po@am__quote@
|
||||
|
||||
.c.o:
|
||||
@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(COMPILE) -c $<
|
||||
|
||||
.c.obj:
|
||||
@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
|
||||
uninstall-info-am:
|
||||
|
||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) ' { files[$$0] = 1; } \
|
||||
END { for (i in files) print i; }'`; \
|
||||
mkid -fID $$unique
|
||||
tags: TAGS
|
||||
|
||||
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
tags=; \
|
||||
here=`pwd`; \
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) ' { files[$$0] = 1; } \
|
||||
END { for (i in files) print i; }'`; \
|
||||
if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
|
||||
test -n "$$unique" || unique=$$empty_fix; \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
$$tags $$unique; \
|
||||
fi
|
||||
ctags: CTAGS
|
||||
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
tags=; \
|
||||
here=`pwd`; \
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) ' { files[$$0] = 1; } \
|
||||
END { for (i in files) print i; }'`; \
|
||||
test -z "$(CTAGS_ARGS)$$tags$$unique" \
|
||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||||
$$tags $$unique
|
||||
|
||||
GTAGS:
|
||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
||||
&& cd $(top_srcdir) \
|
||||
&& gtags -i $(GTAGS_ARGS) $$here
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
|
||||
list='$(DISTFILES)'; for file in $$list; do \
|
||||
case $$file in \
|
||||
$(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
|
||||
$(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
|
||||
esac; \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
||||
dir="/$$dir"; \
|
||||
$(mkdir_p) "$(distdir)$$dir"; \
|
||||
else \
|
||||
dir=''; \
|
||||
fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
||||
fi; \
|
||||
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
||||
else \
|
||||
test -f $(distdir)/$$file \
|
||||
|| cp -p $$d/$$file $(distdir)/$$file \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
check-am: all-am
|
||||
check: check-am
|
||||
all-am: Makefile $(LIBRARIES)
|
||||
installdirs:
|
||||
install: install-am
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
`test -z '$(STRIP)' || \
|
||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-generic clean-noinstLIBRARIES mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-compile distclean-generic \
|
||||
distclean-tags
|
||||
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-am
|
||||
|
||||
info: info-am
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am:
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-info: install-info-am
|
||||
|
||||
install-man:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-compile mostlyclean-generic
|
||||
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-am
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am: uninstall-info-am
|
||||
|
||||
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
|
||||
clean-noinstLIBRARIES ctags distclean distclean-compile \
|
||||
distclean-generic distclean-tags distdir dvi dvi-am html \
|
||||
html-am info info-am install install-am install-data \
|
||||
install-data-am install-exec install-exec-am install-info \
|
||||
install-info-am install-man install-strip installcheck \
|
||||
installcheck-am installdirs maintainer-clean \
|
||||
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
||||
mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \
|
||||
uninstall-am uninstall-info-am
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
@ -1,659 +0,0 @@
|
||||
***************
|
||||
*** 1,656 ****
|
||||
- # Makefile.in generated by automake 1.9.6 from Makefile.am.
|
||||
- # @configure_input@
|
||||
-
|
||||
- # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||||
- # 2003, 2004, 2005 Free Software Foundation, Inc.
|
||||
- # This Makefile.in is free software; the Free Software Foundation
|
||||
- # gives unlimited permission to copy and/or distribute it,
|
||||
- # with or without modifications, as long as this notice is preserved.
|
||||
-
|
||||
- # This program is distributed in the hope that it will be useful,
|
||||
- # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
- # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
- # PARTICULAR PURPOSE.
|
||||
-
|
||||
- @SET_MAKE@
|
||||
-
|
||||
- srcdir = @srcdir@
|
||||
- top_srcdir = @top_srcdir@
|
||||
- VPATH = @srcdir@
|
||||
- pkgdatadir = $(datadir)/@PACKAGE@
|
||||
- pkglibdir = $(libdir)/@PACKAGE@
|
||||
- pkgincludedir = $(includedir)/@PACKAGE@
|
||||
- top_builddir = .
|
||||
- am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
- INSTALL = @INSTALL@
|
||||
- install_sh_DATA = $(install_sh) -c -m 644
|
||||
- install_sh_PROGRAM = $(install_sh) -c
|
||||
- install_sh_SCRIPT = $(install_sh) -c
|
||||
- INSTALL_HEADER = $(INSTALL_DATA)
|
||||
- transform = $(program_transform_name)
|
||||
- NORMAL_INSTALL = :
|
||||
- PRE_INSTALL = :
|
||||
- POST_INSTALL = :
|
||||
- NORMAL_UNINSTALL = :
|
||||
- PRE_UNINSTALL = :
|
||||
- POST_UNINSTALL = :
|
||||
- subdir = .
|
||||
- DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
|
||||
- $(srcdir)/Makefile.in $(top_srcdir)/configure ChangeLog \
|
||||
- depcomp install-sh missing
|
||||
- ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
- am__aclocal_m4_deps = $(top_srcdir)/configure.in
|
||||
- am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
- $(ACLOCAL_M4)
|
||||
- am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
|
||||
- configure.lineno configure.status.lineno
|
||||
- mkinstalldirs = $(install_sh) -d
|
||||
- CONFIG_CLEAN_FILES =
|
||||
- am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
||||
- am__vpath_adj = case $$p in \
|
||||
- $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
||||
- *) f=$$p;; \
|
||||
- esac;
|
||||
- am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
|
||||
- am__installdirs = "$(DESTDIR)$(libdir)"
|
||||
- libLIBRARIES_INSTALL = $(INSTALL_DATA)
|
||||
- LIBRARIES = $(lib_LIBRARIES)
|
||||
- AR = ar
|
||||
- ARFLAGS = cru
|
||||
- libenet_a_AR = $(AR) $(ARFLAGS)
|
||||
- libenet_a_LIBADD =
|
||||
- am_libenet_a_OBJECTS = host.$(OBJEXT) list.$(OBJEXT) \
|
||||
- callbacks.$(OBJEXT) packet.$(OBJEXT) peer.$(OBJEXT) \
|
||||
- protocol.$(OBJEXT) unix.$(OBJEXT) win32.$(OBJEXT)
|
||||
- libenet_a_OBJECTS = $(am_libenet_a_OBJECTS)
|
||||
- DEFAULT_INCLUDES = -I. -I$(srcdir)
|
||||
- depcomp = $(SHELL) $(top_srcdir)/depcomp
|
||||
- am__depfiles_maybe = depfiles
|
||||
- COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
- CCLD = $(CC)
|
||||
- LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
|
||||
- SOURCES = $(libenet_a_SOURCES)
|
||||
- DIST_SOURCES = $(libenet_a_SOURCES)
|
||||
- RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
|
||||
- html-recursive info-recursive install-data-recursive \
|
||||
- install-exec-recursive install-info-recursive \
|
||||
- install-recursive installcheck-recursive installdirs-recursive \
|
||||
- pdf-recursive ps-recursive uninstall-info-recursive \
|
||||
- uninstall-recursive
|
||||
- ETAGS = etags
|
||||
- CTAGS = ctags
|
||||
- DIST_SUBDIRS = $(SUBDIRS)
|
||||
- DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
- distdir = $(PACKAGE)-$(VERSION)
|
||||
- top_distdir = $(distdir)
|
||||
- am__remove_distdir = \
|
||||
- { test ! -d $(distdir) \
|
||||
- || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \
|
||||
- && rm -fr $(distdir); }; }
|
||||
- DIST_ARCHIVES = $(distdir).tar.gz
|
||||
- GZIP_ENV = --best
|
||||
- distuninstallcheck_listfiles = find . -type f -print
|
||||
- distcleancheck_listfiles = find . -type f -print
|
||||
- ACLOCAL = @ACLOCAL@
|
||||
- AMDEP_FALSE = @AMDEP_FALSE@
|
||||
- AMDEP_TRUE = @AMDEP_TRUE@
|
||||
- AMTAR = @AMTAR@
|
||||
- AUTOCONF = @AUTOCONF@
|
||||
- AUTOHEADER = @AUTOHEADER@
|
||||
- AUTOMAKE = @AUTOMAKE@
|
||||
- AWK = @AWK@
|
||||
- CC = @CC@
|
||||
- CCDEPMODE = @CCDEPMODE@
|
||||
- CFLAGS = @CFLAGS@
|
||||
- CPP = @CPP@
|
||||
- CPPFLAGS = @CPPFLAGS@
|
||||
- CYGPATH_W = @CYGPATH_W@
|
||||
- DEFS = @DEFS@
|
||||
- DEPDIR = @DEPDIR@
|
||||
- ECHO_C = @ECHO_C@
|
||||
- ECHO_N = @ECHO_N@
|
||||
- ECHO_T = @ECHO_T@
|
||||
- EGREP = @EGREP@
|
||||
- EXEEXT = @EXEEXT@
|
||||
- GREP = @GREP@
|
||||
- INSTALL_DATA = @INSTALL_DATA@
|
||||
- INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
- INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
- INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
||||
- LDFLAGS = @LDFLAGS@
|
||||
- LIBOBJS = @LIBOBJS@
|
||||
- LIBS = @LIBS@
|
||||
- LTLIBOBJS = @LTLIBOBJS@
|
||||
- MAKEINFO = @MAKEINFO@
|
||||
- OBJEXT = @OBJEXT@
|
||||
- PACKAGE = @PACKAGE@
|
||||
- PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
||||
- PACKAGE_NAME = @PACKAGE_NAME@
|
||||
- PACKAGE_STRING = @PACKAGE_STRING@
|
||||
- PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
||||
- PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
- PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
- RANLIB = @RANLIB@
|
||||
- SET_MAKE = @SET_MAKE@
|
||||
- SHELL = @SHELL@
|
||||
- STRIP = @STRIP@
|
||||
- VERSION = @VERSION@
|
||||
- ac_ct_CC = @ac_ct_CC@
|
||||
- am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
|
||||
- am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
|
||||
- am__include = @am__include@
|
||||
- am__leading_dot = @am__leading_dot@
|
||||
- am__quote = @am__quote@
|
||||
- am__tar = @am__tar@
|
||||
- am__untar = @am__untar@
|
||||
- bindir = @bindir@
|
||||
- build_alias = @build_alias@
|
||||
- datadir = @datadir@
|
||||
- datarootdir = @datarootdir@
|
||||
- docdir = @docdir@
|
||||
- dvidir = @dvidir@
|
||||
- exec_prefix = @exec_prefix@
|
||||
- host_alias = @host_alias@
|
||||
- htmldir = @htmldir@
|
||||
- includedir = @includedir@
|
||||
- infodir = @infodir@
|
||||
- install_sh = @install_sh@
|
||||
- libdir = @libdir@
|
||||
- libexecdir = @libexecdir@
|
||||
- localedir = @localedir@
|
||||
- localstatedir = @localstatedir@
|
||||
- mandir = @mandir@
|
||||
- mkdir_p = @mkdir_p@
|
||||
- oldincludedir = @oldincludedir@
|
||||
- pdfdir = @pdfdir@
|
||||
- prefix = @prefix@
|
||||
- program_transform_name = @program_transform_name@
|
||||
- psdir = @psdir@
|
||||
- sbindir = @sbindir@
|
||||
- sharedstatedir = @sharedstatedir@
|
||||
- sysconfdir = @sysconfdir@
|
||||
- target_alias = @target_alias@
|
||||
- lib_LIBRARIES = libenet.a
|
||||
- libenet_a_SOURCES = host.c list.c callbacks.c packet.c peer.c protocol.c unix.c win32.c
|
||||
- INCLUDES = -Iinclude/
|
||||
- SUBDIRS = include
|
||||
- all: all-recursive
|
||||
-
|
||||
- .SUFFIXES:
|
||||
- .SUFFIXES: .c .o .obj
|
||||
- am--refresh:
|
||||
- @:
|
||||
- $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
- @for dep in $?; do \
|
||||
- case '$(am__configure_deps)' in \
|
||||
- *$$dep*) \
|
||||
- echo ' cd $(srcdir) && $(AUTOMAKE) --foreign '; \
|
||||
- cd $(srcdir) && $(AUTOMAKE) --foreign \
|
||||
- && exit 0; \
|
||||
- exit 1;; \
|
||||
- esac; \
|
||||
- done; \
|
||||
- echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
|
||||
- cd $(top_srcdir) && \
|
||||
- $(AUTOMAKE) --foreign Makefile
|
||||
- .PRECIOUS: Makefile
|
||||
- Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
- @case '$?' in \
|
||||
- *config.status*) \
|
||||
- echo ' $(SHELL) ./config.status'; \
|
||||
- $(SHELL) ./config.status;; \
|
||||
- *) \
|
||||
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
|
||||
- cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
|
||||
- esac;
|
||||
-
|
||||
- $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
- $(SHELL) ./config.status --recheck
|
||||
-
|
||||
- $(top_srcdir)/configure: $(am__configure_deps)
|
||||
- cd $(srcdir) && $(AUTOCONF)
|
||||
- $(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||||
- cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
|
||||
- install-libLIBRARIES: $(lib_LIBRARIES)
|
||||
- @$(NORMAL_INSTALL)
|
||||
- test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)"
|
||||
- @list='$(lib_LIBRARIES)'; for p in $$list; do \
|
||||
- if test -f $$p; then \
|
||||
- f=$(am__strip_dir) \
|
||||
- echo " $(libLIBRARIES_INSTALL) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \
|
||||
- $(libLIBRARIES_INSTALL) "$$p" "$(DESTDIR)$(libdir)/$$f"; \
|
||||
- else :; fi; \
|
||||
- done
|
||||
- @$(POST_INSTALL)
|
||||
- @list='$(lib_LIBRARIES)'; for p in $$list; do \
|
||||
- if test -f $$p; then \
|
||||
- p=$(am__strip_dir) \
|
||||
- echo " $(RANLIB) '$(DESTDIR)$(libdir)/$$p'"; \
|
||||
- $(RANLIB) "$(DESTDIR)$(libdir)/$$p"; \
|
||||
- else :; fi; \
|
||||
- done
|
||||
-
|
||||
- uninstall-libLIBRARIES:
|
||||
- @$(NORMAL_UNINSTALL)
|
||||
- @list='$(lib_LIBRARIES)'; for p in $$list; do \
|
||||
- p=$(am__strip_dir) \
|
||||
- echo " rm -f '$(DESTDIR)$(libdir)/$$p'"; \
|
||||
- rm -f "$(DESTDIR)$(libdir)/$$p"; \
|
||||
- done
|
||||
-
|
||||
- clean-libLIBRARIES:
|
||||
- -test -z "$(lib_LIBRARIES)" || rm -f $(lib_LIBRARIES)
|
||||
- libenet.a: $(libenet_a_OBJECTS) $(libenet_a_DEPENDENCIES)
|
||||
- -rm -f libenet.a
|
||||
- $(libenet_a_AR) libenet.a $(libenet_a_OBJECTS) $(libenet_a_LIBADD)
|
||||
- $(RANLIB) libenet.a
|
||||
-
|
||||
- mostlyclean-compile:
|
||||
- -rm -f *.$(OBJEXT)
|
||||
-
|
||||
- distclean-compile:
|
||||
- -rm -f *.tab.c
|
||||
-
|
||||
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/callbacks.Po@am__quote@
|
||||
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/host.Po@am__quote@
|
||||
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/list.Po@am__quote@
|
||||
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/packet.Po@am__quote@
|
||||
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/peer.Po@am__quote@
|
||||
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/protocol.Po@am__quote@
|
||||
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/unix.Po@am__quote@
|
||||
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/win32.Po@am__quote@
|
||||
-
|
||||
- .c.o:
|
||||
- @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
||||
- @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
||||
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||||
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
- @am__fastdepCC_FALSE@ $(COMPILE) -c $<
|
||||
-
|
||||
- .c.obj:
|
||||
- @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
|
||||
- @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
||||
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||||
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
- @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
|
||||
- uninstall-info-am:
|
||||
-
|
||||
- # This directory's subdirectories are mostly independent; you can cd
|
||||
- # into them and run `make' without going through this Makefile.
|
||||
- # To change the values of `make' variables: instead of editing Makefiles,
|
||||
- # (1) if the variable is set in `config.status', edit `config.status'
|
||||
- # (which will cause the Makefiles to be regenerated when you run `make');
|
||||
- # (2) otherwise, pass the desired values on the `make' command line.
|
||||
- $(RECURSIVE_TARGETS):
|
||||
- @failcom='exit 1'; \
|
||||
- for f in x $$MAKEFLAGS; do \
|
||||
- case $$f in \
|
||||
- *=* | --[!k]*);; \
|
||||
- *k*) failcom='fail=yes';; \
|
||||
- esac; \
|
||||
- done; \
|
||||
- dot_seen=no; \
|
||||
- target=`echo $@ | sed s/-recursive//`; \
|
||||
- list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
- echo "Making $$target in $$subdir"; \
|
||||
- if test "$$subdir" = "."; then \
|
||||
- dot_seen=yes; \
|
||||
- local_target="$$target-am"; \
|
||||
- else \
|
||||
- local_target="$$target"; \
|
||||
- fi; \
|
||||
- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
||||
- || eval $$failcom; \
|
||||
- done; \
|
||||
- if test "$$dot_seen" = "no"; then \
|
||||
- $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
||||
- fi; test -z "$$fail"
|
||||
-
|
||||
- mostlyclean-recursive clean-recursive distclean-recursive \
|
||||
- maintainer-clean-recursive:
|
||||
- @failcom='exit 1'; \
|
||||
- for f in x $$MAKEFLAGS; do \
|
||||
- case $$f in \
|
||||
- *=* | --[!k]*);; \
|
||||
- *k*) failcom='fail=yes';; \
|
||||
- esac; \
|
||||
- done; \
|
||||
- dot_seen=no; \
|
||||
- case "$@" in \
|
||||
- distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
|
||||
- *) list='$(SUBDIRS)' ;; \
|
||||
- esac; \
|
||||
- rev=''; for subdir in $$list; do \
|
||||
- if test "$$subdir" = "."; then :; else \
|
||||
- rev="$$subdir $$rev"; \
|
||||
- fi; \
|
||||
- done; \
|
||||
- rev="$$rev ."; \
|
||||
- target=`echo $@ | sed s/-recursive//`; \
|
||||
- for subdir in $$rev; do \
|
||||
- echo "Making $$target in $$subdir"; \
|
||||
- if test "$$subdir" = "."; then \
|
||||
- local_target="$$target-am"; \
|
||||
- else \
|
||||
- local_target="$$target"; \
|
||||
- fi; \
|
||||
- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
||||
- || eval $$failcom; \
|
||||
- done && test -z "$$fail"
|
||||
- tags-recursive:
|
||||
- list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
|
||||
- done
|
||||
- ctags-recursive:
|
||||
- list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
|
||||
- done
|
||||
-
|
||||
- ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
||||
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
- unique=`for i in $$list; do \
|
||||
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
- done | \
|
||||
- $(AWK) ' { files[$$0] = 1; } \
|
||||
- END { for (i in files) print i; }'`; \
|
||||
- mkid -fID $$unique
|
||||
- tags: TAGS
|
||||
-
|
||||
- TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
- $(TAGS_FILES) $(LISP)
|
||||
- tags=; \
|
||||
- here=`pwd`; \
|
||||
- if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
|
||||
- include_option=--etags-include; \
|
||||
- empty_fix=.; \
|
||||
- else \
|
||||
- include_option=--include; \
|
||||
- empty_fix=; \
|
||||
- fi; \
|
||||
- list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
- if test "$$subdir" = .; then :; else \
|
||||
- test ! -f $$subdir/TAGS || \
|
||||
- tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
|
||||
- fi; \
|
||||
- done; \
|
||||
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
- unique=`for i in $$list; do \
|
||||
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
- done | \
|
||||
- $(AWK) ' { files[$$0] = 1; } \
|
||||
- END { for (i in files) print i; }'`; \
|
||||
- if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
|
||||
- test -n "$$unique" || unique=$$empty_fix; \
|
||||
- $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
- $$tags $$unique; \
|
||||
- fi
|
||||
- ctags: CTAGS
|
||||
- CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
- $(TAGS_FILES) $(LISP)
|
||||
- tags=; \
|
||||
- here=`pwd`; \
|
||||
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
- unique=`for i in $$list; do \
|
||||
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
- done | \
|
||||
- $(AWK) ' { files[$$0] = 1; } \
|
||||
- END { for (i in files) print i; }'`; \
|
||||
- test -z "$(CTAGS_ARGS)$$tags$$unique" \
|
||||
- || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||||
- $$tags $$unique
|
||||
-
|
||||
- GTAGS:
|
||||
- here=`$(am__cd) $(top_builddir) && pwd` \
|
||||
- && cd $(top_srcdir) \
|
||||
- && gtags -i $(GTAGS_ARGS) $$here
|
||||
-
|
||||
- distclean-tags:
|
||||
- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
-
|
||||
- distdir: $(DISTFILES)
|
||||
- $(am__remove_distdir)
|
||||
- mkdir $(distdir)
|
||||
- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
||||
- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
|
||||
- list='$(DISTFILES)'; for file in $$list; do \
|
||||
- case $$file in \
|
||||
- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
|
||||
- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
|
||||
- esac; \
|
||||
- if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
- if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
||||
- dir="/$$dir"; \
|
||||
- $(mkdir_p) "$(distdir)$$dir"; \
|
||||
- else \
|
||||
- dir=''; \
|
||||
- fi; \
|
||||
- if test -d $$d/$$file; then \
|
||||
- if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
||||
- fi; \
|
||||
- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
||||
- else \
|
||||
- test -f $(distdir)/$$file \
|
||||
- || cp -p $$d/$$file $(distdir)/$$file \
|
||||
- || exit 1; \
|
||||
- fi; \
|
||||
- done
|
||||
- list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
|
||||
- if test "$$subdir" = .; then :; else \
|
||||
- test -d "$(distdir)/$$subdir" \
|
||||
- || $(mkdir_p) "$(distdir)/$$subdir" \
|
||||
- || exit 1; \
|
||||
- distdir=`$(am__cd) $(distdir) && pwd`; \
|
||||
- top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
|
||||
- (cd $$subdir && \
|
||||
- $(MAKE) $(AM_MAKEFLAGS) \
|
||||
- top_distdir="$$top_distdir" \
|
||||
- distdir="$$distdir/$$subdir" \
|
||||
- distdir) \
|
||||
- || exit 1; \
|
||||
- fi; \
|
||||
- done
|
||||
- -find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
|
||||
- ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
|
||||
- ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
|
||||
- ! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \
|
||||
- || chmod -R a+r $(distdir)
|
||||
- dist-gzip: distdir
|
||||
- tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
||||
- $(am__remove_distdir)
|
||||
-
|
||||
- dist-bzip2: distdir
|
||||
- tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
|
||||
- $(am__remove_distdir)
|
||||
-
|
||||
- dist-tarZ: distdir
|
||||
- tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
|
||||
- $(am__remove_distdir)
|
||||
-
|
||||
- dist-shar: distdir
|
||||
- shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
|
||||
- $(am__remove_distdir)
|
||||
-
|
||||
- dist-zip: distdir
|
||||
- -rm -f $(distdir).zip
|
||||
- zip -rq $(distdir).zip $(distdir)
|
||||
- $(am__remove_distdir)
|
||||
-
|
||||
- dist dist-all: distdir
|
||||
- tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
||||
- $(am__remove_distdir)
|
||||
-
|
||||
- # This target untars the dist file and tries a VPATH configuration. Then
|
||||
- # it guarantees that the distribution is self-contained by making another
|
||||
- # tarfile.
|
||||
- distcheck: dist
|
||||
- case '$(DIST_ARCHIVES)' in \
|
||||
- *.tar.gz*) \
|
||||
- GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
|
||||
- *.tar.bz2*) \
|
||||
- bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
|
||||
- *.tar.Z*) \
|
||||
- uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
|
||||
- *.shar.gz*) \
|
||||
- GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\
|
||||
- *.zip*) \
|
||||
- unzip $(distdir).zip ;;\
|
||||
- esac
|
||||
- chmod -R a-w $(distdir); chmod a+w $(distdir)
|
||||
- mkdir $(distdir)/_build
|
||||
- mkdir $(distdir)/_inst
|
||||
- chmod a-w $(distdir)
|
||||
- dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
|
||||
- && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
|
||||
- && cd $(distdir)/_build \
|
||||
- && ../configure --srcdir=.. --prefix="$$dc_install_base" \
|
||||
- $(DISTCHECK_CONFIGURE_FLAGS) \
|
||||
- && $(MAKE) $(AM_MAKEFLAGS) \
|
||||
- && $(MAKE) $(AM_MAKEFLAGS) dvi \
|
||||
- && $(MAKE) $(AM_MAKEFLAGS) check \
|
||||
- && $(MAKE) $(AM_MAKEFLAGS) install \
|
||||
- && $(MAKE) $(AM_MAKEFLAGS) installcheck \
|
||||
- && $(MAKE) $(AM_MAKEFLAGS) uninstall \
|
||||
- && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
|
||||
- distuninstallcheck \
|
||||
- && chmod -R a-w "$$dc_install_base" \
|
||||
- && ({ \
|
||||
- (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
|
||||
- && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
|
||||
- && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
|
||||
- && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
|
||||
- distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
|
||||
- } || { rm -rf "$$dc_destdir"; exit 1; }) \
|
||||
- && rm -rf "$$dc_destdir" \
|
||||
- && $(MAKE) $(AM_MAKEFLAGS) dist \
|
||||
- && rm -rf $(DIST_ARCHIVES) \
|
||||
- && $(MAKE) $(AM_MAKEFLAGS) distcleancheck
|
||||
- $(am__remove_distdir)
|
||||
- @(echo "$(distdir) archives ready for distribution: "; \
|
||||
- list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
|
||||
- sed -e '1{h;s/./=/g;p;x;}' -e '$${p;x;}'
|
||||
- distuninstallcheck:
|
||||
- @cd $(distuninstallcheck_dir) \
|
||||
- && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
|
||||
- || { echo "ERROR: files left after uninstall:" ; \
|
||||
- if test -n "$(DESTDIR)"; then \
|
||||
- echo " (check DESTDIR support)"; \
|
||||
- fi ; \
|
||||
- $(distuninstallcheck_listfiles) ; \
|
||||
- exit 1; } >&2
|
||||
- distcleancheck: distclean
|
||||
- @if test '$(srcdir)' = . ; then \
|
||||
- echo "ERROR: distcleancheck can only run from a VPATH build" ; \
|
||||
- exit 1 ; \
|
||||
- fi
|
||||
- @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
|
||||
- || { echo "ERROR: files left in build directory after distclean:" ; \
|
||||
- $(distcleancheck_listfiles) ; \
|
||||
- exit 1; } >&2
|
||||
- check-am: all-am
|
||||
- check: check-recursive
|
||||
- all-am: Makefile $(LIBRARIES)
|
||||
- installdirs: installdirs-recursive
|
||||
- installdirs-am:
|
||||
- for dir in "$(DESTDIR)$(libdir)"; do \
|
||||
- test -z "$$dir" || $(mkdir_p) "$$dir"; \
|
||||
- done
|
||||
- install: install-recursive
|
||||
- install-exec: install-exec-recursive
|
||||
- install-data: install-data-recursive
|
||||
- uninstall: uninstall-recursive
|
||||
-
|
||||
- install-am: all-am
|
||||
- @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
-
|
||||
- installcheck: installcheck-recursive
|
||||
- install-strip:
|
||||
- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
- `test -z '$(STRIP)' || \
|
||||
- echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
||||
- mostlyclean-generic:
|
||||
-
|
||||
- clean-generic:
|
||||
-
|
||||
- distclean-generic:
|
||||
- -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
-
|
||||
- maintainer-clean-generic:
|
||||
- @echo "This command is intended for maintainers to use"
|
||||
- @echo "it deletes files that may require special tools to rebuild."
|
||||
- clean: clean-recursive
|
||||
-
|
||||
- clean-am: clean-generic clean-libLIBRARIES mostlyclean-am
|
||||
-
|
||||
- distclean: distclean-recursive
|
||||
- -rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
||||
- -rm -rf ./$(DEPDIR)
|
||||
- -rm -f Makefile
|
||||
- distclean-am: clean-am distclean-compile distclean-generic \
|
||||
- distclean-tags
|
||||
-
|
||||
- dvi: dvi-recursive
|
||||
-
|
||||
- dvi-am:
|
||||
-
|
||||
- html: html-recursive
|
||||
-
|
||||
- info: info-recursive
|
||||
-
|
||||
- info-am:
|
||||
-
|
||||
- install-data-am:
|
||||
-
|
||||
- install-exec-am: install-libLIBRARIES
|
||||
-
|
||||
- install-info: install-info-recursive
|
||||
-
|
||||
- install-man:
|
||||
-
|
||||
- installcheck-am:
|
||||
-
|
||||
- maintainer-clean: maintainer-clean-recursive
|
||||
- -rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
||||
- -rm -rf $(top_srcdir)/autom4te.cache
|
||||
- -rm -rf ./$(DEPDIR)
|
||||
- -rm -f Makefile
|
||||
- maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
-
|
||||
- mostlyclean: mostlyclean-recursive
|
||||
-
|
||||
- mostlyclean-am: mostlyclean-compile mostlyclean-generic
|
||||
-
|
||||
- pdf: pdf-recursive
|
||||
-
|
||||
- pdf-am:
|
||||
-
|
||||
- ps: ps-recursive
|
||||
-
|
||||
- ps-am:
|
||||
-
|
||||
- uninstall-am: uninstall-info-am uninstall-libLIBRARIES
|
||||
-
|
||||
- uninstall-info: uninstall-info-recursive
|
||||
-
|
||||
- .PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am am--refresh check \
|
||||
- check-am clean clean-generic clean-libLIBRARIES \
|
||||
- clean-recursive ctags ctags-recursive dist dist-all dist-bzip2 \
|
||||
- dist-gzip dist-shar dist-tarZ dist-zip distcheck distclean \
|
||||
- distclean-compile distclean-generic distclean-recursive \
|
||||
- distclean-tags distcleancheck distdir distuninstallcheck dvi \
|
||||
- dvi-am html html-am info info-am install install-am \
|
||||
- install-data install-data-am install-exec install-exec-am \
|
||||
- install-info install-info-am install-libLIBRARIES install-man \
|
||||
- install-strip installcheck installcheck-am installdirs \
|
||||
- installdirs-am maintainer-clean maintainer-clean-generic \
|
||||
- maintainer-clean-recursive mostlyclean mostlyclean-compile \
|
||||
- mostlyclean-generic mostlyclean-recursive pdf pdf-am ps ps-am \
|
||||
- tags tags-recursive uninstall uninstall-am uninstall-info-am \
|
||||
- uninstall-libLIBRARIES
|
||||
-
|
||||
- # Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
- # Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
- .NOEXPORT:
|
||||
--- 0 ----
|
@ -1 +0,0 @@
|
||||
SUBDIRS = enet
|
@ -1,462 +0,0 @@
|
||||
# Makefile.in generated by automake 1.9.6 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||||
# 2003, 2004, 2005 Free Software Foundation, Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
@SET_MAKE@
|
||||
srcdir = @srcdir@
|
||||
top_srcdir = @top_srcdir@
|
||||
VPATH = @srcdir@
|
||||
pkgdatadir = $(datadir)/@PACKAGE@
|
||||
pkglibdir = $(libdir)/@PACKAGE@
|
||||
pkgincludedir = $(includedir)/@PACKAGE@
|
||||
top_builddir = ../../..
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
INSTALL = @INSTALL@
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = @build@
|
||||
host_triplet = @host@
|
||||
target_triplet = @target@
|
||||
subdir = src/enet/include
|
||||
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
|
||||
$(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
mkinstalldirs = $(install_sh) -d
|
||||
CONFIG_CLEAN_FILES =
|
||||
SOURCES =
|
||||
DIST_SOURCES =
|
||||
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
|
||||
html-recursive info-recursive install-data-recursive \
|
||||
install-exec-recursive install-info-recursive \
|
||||
install-recursive installcheck-recursive installdirs-recursive \
|
||||
pdf-recursive ps-recursive uninstall-info-recursive \
|
||||
uninstall-recursive
|
||||
ETAGS = etags
|
||||
CTAGS = ctags
|
||||
DIST_SUBDIRS = $(SUBDIRS)
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = @ACLOCAL@
|
||||
AMDEP_FALSE = @AMDEP_FALSE@
|
||||
AMDEP_TRUE = @AMDEP_TRUE@
|
||||
AMTAR = @AMTAR@
|
||||
AUTOCONF = @AUTOCONF@
|
||||
AUTOHEADER = @AUTOHEADER@
|
||||
AUTOMAKE = @AUTOMAKE@
|
||||
AWK = @AWK@
|
||||
BULLETTREE = @BULLETTREE@
|
||||
CC = @CC@
|
||||
CCDEPMODE = @CCDEPMODE@
|
||||
CFLAGS = @CFLAGS@
|
||||
CPP = @CPP@
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
CXX = @CXX@
|
||||
CXXCPP = @CXXCPP@
|
||||
CXXDEPMODE = @CXXDEPMODE@
|
||||
CXXFLAGS = @CXXFLAGS@
|
||||
CYGPATH_W = @CYGPATH_W@
|
||||
DEFS = @DEFS@
|
||||
DEPDIR = @DEPDIR@
|
||||
ECHO_C = @ECHO_C@
|
||||
ECHO_N = @ECHO_N@
|
||||
ECHO_T = @ECHO_T@
|
||||
EGREP = @EGREP@
|
||||
ENETTREE = @ENETTREE@
|
||||
EXEEXT = @EXEEXT@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
||||
LDFLAGS = @LDFLAGS@
|
||||
LIBOBJS = @LIBOBJS@
|
||||
LIBS = @LIBS@
|
||||
LTLIBOBJS = @LTLIBOBJS@
|
||||
MAKEINFO = @MAKEINFO@
|
||||
NOREGMOVE = @NOREGMOVE@
|
||||
OBJEXT = @OBJEXT@
|
||||
PACKAGE = @PACKAGE@
|
||||
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
||||
PACKAGE_NAME = @PACKAGE_NAME@
|
||||
PACKAGE_STRING = @PACKAGE_STRING@
|
||||
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
RANLIB = @RANLIB@
|
||||
SET_MAKE = @SET_MAKE@
|
||||
SHELL = @SHELL@
|
||||
STRIP = @STRIP@
|
||||
VERSION = @VERSION@
|
||||
ac_ct_CC = @ac_ct_CC@
|
||||
ac_ct_CXX = @ac_ct_CXX@
|
||||
ac_ct_RANLIB = @ac_ct_RANLIB@
|
||||
ac_ct_STRIP = @ac_ct_STRIP@
|
||||
am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
|
||||
am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
|
||||
am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
|
||||
am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
|
||||
am__include = @am__include@
|
||||
am__leading_dot = @am__leading_dot@
|
||||
am__quote = @am__quote@
|
||||
am__tar = @am__tar@
|
||||
am__untar = @am__untar@
|
||||
bindir = @bindir@
|
||||
build = @build@
|
||||
build_alias = @build_alias@
|
||||
build_cpu = @build_cpu@
|
||||
build_os = @build_os@
|
||||
build_vendor = @build_vendor@
|
||||
bullet_LIBS = @bullet_LIBS@
|
||||
datadir = @datadir@
|
||||
enet_LIBS = @enet_LIBS@
|
||||
exec_prefix = @exec_prefix@
|
||||
have_sdl_config = @have_sdl_config@
|
||||
have_svnversion = @have_svnversion@
|
||||
host = @host@
|
||||
host_alias = @host_alias@
|
||||
host_cpu = @host_cpu@
|
||||
host_os = @host_os@
|
||||
host_vendor = @host_vendor@
|
||||
includedir = @includedir@
|
||||
infodir = @infodir@
|
||||
install_sh = @install_sh@
|
||||
libdir = @libdir@
|
||||
libexecdir = @libexecdir@
|
||||
localstatedir = @localstatedir@
|
||||
mandir = @mandir@
|
||||
mkdir_p = @mkdir_p@
|
||||
oldincludedir = @oldincludedir@
|
||||
openal_LIBS = @openal_LIBS@
|
||||
opengl_LIBS = @opengl_LIBS@
|
||||
prefix = @prefix@
|
||||
program_transform_name = @program_transform_name@
|
||||
sbindir = @sbindir@
|
||||
sdl_LIBS = @sdl_LIBS@
|
||||
sharedstatedir = @sharedstatedir@
|
||||
sysconfdir = @sysconfdir@
|
||||
target = @target@
|
||||
target_alias = @target_alias@
|
||||
target_cpu = @target_cpu@
|
||||
target_os = @target_os@
|
||||
target_vendor = @target_vendor@
|
||||
SUBDIRS = enet
|
||||
all: all-recursive
|
||||
|
||||
.SUFFIXES:
|
||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
|
||||
&& exit 0; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/enet/include/Makefile'; \
|
||||
cd $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu src/enet/include/Makefile
|
||||
.PRECIOUS: Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
$(top_srcdir)/configure: $(am__configure_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
uninstall-info-am:
|
||||
|
||||
# This directory's subdirectories are mostly independent; you can cd
|
||||
# into them and run `make' without going through this Makefile.
|
||||
# To change the values of `make' variables: instead of editing Makefiles,
|
||||
# (1) if the variable is set in `config.status', edit `config.status'
|
||||
# (which will cause the Makefiles to be regenerated when you run `make');
|
||||
# (2) otherwise, pass the desired values on the `make' command line.
|
||||
$(RECURSIVE_TARGETS):
|
||||
@failcom='exit 1'; \
|
||||
for f in x $$MAKEFLAGS; do \
|
||||
case $$f in \
|
||||
*=* | --[!k]*);; \
|
||||
*k*) failcom='fail=yes';; \
|
||||
esac; \
|
||||
done; \
|
||||
dot_seen=no; \
|
||||
target=`echo $@ | sed s/-recursive//`; \
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
echo "Making $$target in $$subdir"; \
|
||||
if test "$$subdir" = "."; then \
|
||||
dot_seen=yes; \
|
||||
local_target="$$target-am"; \
|
||||
else \
|
||||
local_target="$$target"; \
|
||||
fi; \
|
||||
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
||||
|| eval $$failcom; \
|
||||
done; \
|
||||
if test "$$dot_seen" = "no"; then \
|
||||
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
||||
fi; test -z "$$fail"
|
||||
|
||||
mostlyclean-recursive clean-recursive distclean-recursive \
|
||||
maintainer-clean-recursive:
|
||||
@failcom='exit 1'; \
|
||||
for f in x $$MAKEFLAGS; do \
|
||||
case $$f in \
|
||||
*=* | --[!k]*);; \
|
||||
*k*) failcom='fail=yes';; \
|
||||
esac; \
|
||||
done; \
|
||||
dot_seen=no; \
|
||||
case "$@" in \
|
||||
distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
|
||||
*) list='$(SUBDIRS)' ;; \
|
||||
esac; \
|
||||
rev=''; for subdir in $$list; do \
|
||||
if test "$$subdir" = "."; then :; else \
|
||||
rev="$$subdir $$rev"; \
|
||||
fi; \
|
||||
done; \
|
||||
rev="$$rev ."; \
|
||||
target=`echo $@ | sed s/-recursive//`; \
|
||||
for subdir in $$rev; do \
|
||||
echo "Making $$target in $$subdir"; \
|
||||
if test "$$subdir" = "."; then \
|
||||
local_target="$$target-am"; \
|
||||
else \
|
||||
local_target="$$target"; \
|
||||
fi; \
|
||||
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
||||
|| eval $$failcom; \
|
||||
done && test -z "$$fail"
|
||||
tags-recursive:
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
|
||||
done
|
||||
ctags-recursive:
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
|
||||
done
|
||||
|
||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) ' { files[$$0] = 1; } \
|
||||
END { for (i in files) print i; }'`; \
|
||||
mkid -fID $$unique
|
||||
tags: TAGS
|
||||
|
||||
TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
tags=; \
|
||||
here=`pwd`; \
|
||||
if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
|
||||
include_option=--etags-include; \
|
||||
empty_fix=.; \
|
||||
else \
|
||||
include_option=--include; \
|
||||
empty_fix=; \
|
||||
fi; \
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
if test "$$subdir" = .; then :; else \
|
||||
test ! -f $$subdir/TAGS || \
|
||||
tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
|
||||
fi; \
|
||||
done; \
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) ' { files[$$0] = 1; } \
|
||||
END { for (i in files) print i; }'`; \
|
||||
if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
|
||||
test -n "$$unique" || unique=$$empty_fix; \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
$$tags $$unique; \
|
||||
fi
|
||||
ctags: CTAGS
|
||||
CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
tags=; \
|
||||
here=`pwd`; \
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) ' { files[$$0] = 1; } \
|
||||
END { for (i in files) print i; }'`; \
|
||||
test -z "$(CTAGS_ARGS)$$tags$$unique" \
|
||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||||
$$tags $$unique
|
||||
|
||||
GTAGS:
|
||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
||||
&& cd $(top_srcdir) \
|
||||
&& gtags -i $(GTAGS_ARGS) $$here
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
|
||||
list='$(DISTFILES)'; for file in $$list; do \
|
||||
case $$file in \
|
||||
$(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
|
||||
$(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
|
||||
esac; \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
||||
dir="/$$dir"; \
|
||||
$(mkdir_p) "$(distdir)$$dir"; \
|
||||
else \
|
||||
dir=''; \
|
||||
fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
||||
fi; \
|
||||
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
||||
else \
|
||||
test -f $(distdir)/$$file \
|
||||
|| cp -p $$d/$$file $(distdir)/$$file \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
|
||||
if test "$$subdir" = .; then :; else \
|
||||
test -d "$(distdir)/$$subdir" \
|
||||
|| $(mkdir_p) "$(distdir)/$$subdir" \
|
||||
|| exit 1; \
|
||||
distdir=`$(am__cd) $(distdir) && pwd`; \
|
||||
top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
|
||||
(cd $$subdir && \
|
||||
$(MAKE) $(AM_MAKEFLAGS) \
|
||||
top_distdir="$$top_distdir" \
|
||||
distdir="$$distdir/$$subdir" \
|
||||
distdir) \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
check-am: all-am
|
||||
check: check-recursive
|
||||
all-am: Makefile
|
||||
installdirs: installdirs-recursive
|
||||
installdirs-am:
|
||||
install: install-recursive
|
||||
install-exec: install-exec-recursive
|
||||
install-data: install-data-recursive
|
||||
uninstall: uninstall-recursive
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-recursive
|
||||
install-strip:
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
`test -z '$(STRIP)' || \
|
||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-recursive
|
||||
|
||||
clean-am: clean-generic mostlyclean-am
|
||||
|
||||
distclean: distclean-recursive
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-generic distclean-tags
|
||||
|
||||
dvi: dvi-recursive
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-recursive
|
||||
|
||||
info: info-recursive
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am:
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-info: install-info-recursive
|
||||
|
||||
install-man:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-recursive
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-recursive
|
||||
|
||||
mostlyclean-am: mostlyclean-generic
|
||||
|
||||
pdf: pdf-recursive
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-recursive
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am: uninstall-info-am
|
||||
|
||||
uninstall-info: uninstall-info-recursive
|
||||
|
||||
.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \
|
||||
clean clean-generic clean-recursive ctags ctags-recursive \
|
||||
distclean distclean-generic distclean-recursive distclean-tags \
|
||||
distdir dvi dvi-am html html-am info info-am install \
|
||||
install-am install-data install-data-am install-exec \
|
||||
install-exec-am install-info install-info-am install-man \
|
||||
install-strip installcheck installcheck-am installdirs \
|
||||
installdirs-am maintainer-clean maintainer-clean-generic \
|
||||
maintainer-clean-recursive mostlyclean mostlyclean-generic \
|
||||
mostlyclean-recursive pdf pdf-am ps ps-am tags tags-recursive \
|
||||
uninstall uninstall-am uninstall-info-am
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
@ -1,12 +0,0 @@
|
||||
libenetincludedir = $(includedir)/enet
|
||||
libenetinclude_HEADERS = \
|
||||
types.h \
|
||||
list.h \
|
||||
utility.h \
|
||||
time.h \
|
||||
callbacks.h \
|
||||
unix.h \
|
||||
win32.h \
|
||||
protocol.h \
|
||||
enet.h
|
||||
|
@ -1,394 +0,0 @@
|
||||
# Makefile.in generated by automake 1.9.6 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||||
# 2003, 2004, 2005 Free Software Foundation, Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
@SET_MAKE@
|
||||
|
||||
srcdir = @srcdir@
|
||||
top_srcdir = @top_srcdir@
|
||||
VPATH = @srcdir@
|
||||
pkgdatadir = $(datadir)/@PACKAGE@
|
||||
pkglibdir = $(libdir)/@PACKAGE@
|
||||
pkgincludedir = $(includedir)/@PACKAGE@
|
||||
top_builddir = ../../../..
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
INSTALL = @INSTALL@
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = @build@
|
||||
host_triplet = @host@
|
||||
target_triplet = @target@
|
||||
subdir = src/enet/include/enet
|
||||
DIST_COMMON = $(libenetinclude_HEADERS) $(srcdir)/Makefile.am \
|
||||
$(srcdir)/Makefile.in
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
|
||||
$(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
mkinstalldirs = $(install_sh) -d
|
||||
CONFIG_CLEAN_FILES =
|
||||
SOURCES =
|
||||
DIST_SOURCES =
|
||||
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
||||
am__vpath_adj = case $$p in \
|
||||
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
||||
*) f=$$p;; \
|
||||
esac;
|
||||
am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
|
||||
am__installdirs = "$(DESTDIR)$(libenetincludedir)"
|
||||
libenetincludeHEADERS_INSTALL = $(INSTALL_HEADER)
|
||||
HEADERS = $(libenetinclude_HEADERS)
|
||||
ETAGS = etags
|
||||
CTAGS = ctags
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = @ACLOCAL@
|
||||
AMDEP_FALSE = @AMDEP_FALSE@
|
||||
AMDEP_TRUE = @AMDEP_TRUE@
|
||||
AMTAR = @AMTAR@
|
||||
AUTOCONF = @AUTOCONF@
|
||||
AUTOHEADER = @AUTOHEADER@
|
||||
AUTOMAKE = @AUTOMAKE@
|
||||
AWK = @AWK@
|
||||
BULLETTREE = @BULLETTREE@
|
||||
CC = @CC@
|
||||
CCDEPMODE = @CCDEPMODE@
|
||||
CFLAGS = @CFLAGS@
|
||||
CPP = @CPP@
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
CXX = @CXX@
|
||||
CXXCPP = @CXXCPP@
|
||||
CXXDEPMODE = @CXXDEPMODE@
|
||||
CXXFLAGS = @CXXFLAGS@
|
||||
CYGPATH_W = @CYGPATH_W@
|
||||
DEFS = @DEFS@
|
||||
DEPDIR = @DEPDIR@
|
||||
ECHO_C = @ECHO_C@
|
||||
ECHO_N = @ECHO_N@
|
||||
ECHO_T = @ECHO_T@
|
||||
EGREP = @EGREP@
|
||||
ENETTREE = @ENETTREE@
|
||||
EXEEXT = @EXEEXT@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
||||
LDFLAGS = @LDFLAGS@
|
||||
LIBOBJS = @LIBOBJS@
|
||||
LIBS = @LIBS@
|
||||
LTLIBOBJS = @LTLIBOBJS@
|
||||
MAKEINFO = @MAKEINFO@
|
||||
NOREGMOVE = @NOREGMOVE@
|
||||
OBJEXT = @OBJEXT@
|
||||
PACKAGE = @PACKAGE@
|
||||
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
||||
PACKAGE_NAME = @PACKAGE_NAME@
|
||||
PACKAGE_STRING = @PACKAGE_STRING@
|
||||
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
RANLIB = @RANLIB@
|
||||
SET_MAKE = @SET_MAKE@
|
||||
SHELL = @SHELL@
|
||||
STRIP = @STRIP@
|
||||
VERSION = @VERSION@
|
||||
ac_ct_CC = @ac_ct_CC@
|
||||
ac_ct_CXX = @ac_ct_CXX@
|
||||
ac_ct_RANLIB = @ac_ct_RANLIB@
|
||||
ac_ct_STRIP = @ac_ct_STRIP@
|
||||
am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
|
||||
am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
|
||||
am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
|
||||
am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
|
||||
am__include = @am__include@
|
||||
am__leading_dot = @am__leading_dot@
|
||||
am__quote = @am__quote@
|
||||
am__tar = @am__tar@
|
||||
am__untar = @am__untar@
|
||||
bindir = @bindir@
|
||||
build = @build@
|
||||
build_alias = @build_alias@
|
||||
build_cpu = @build_cpu@
|
||||
build_os = @build_os@
|
||||
build_vendor = @build_vendor@
|
||||
bullet_LIBS = @bullet_LIBS@
|
||||
datadir = @datadir@
|
||||
enet_LIBS = @enet_LIBS@
|
||||
exec_prefix = @exec_prefix@
|
||||
have_sdl_config = @have_sdl_config@
|
||||
have_svnversion = @have_svnversion@
|
||||
host = @host@
|
||||
host_alias = @host_alias@
|
||||
host_cpu = @host_cpu@
|
||||
host_os = @host_os@
|
||||
host_vendor = @host_vendor@
|
||||
includedir = @includedir@
|
||||
infodir = @infodir@
|
||||
install_sh = @install_sh@
|
||||
libdir = @libdir@
|
||||
libexecdir = @libexecdir@
|
||||
localstatedir = @localstatedir@
|
||||
mandir = @mandir@
|
||||
mkdir_p = @mkdir_p@
|
||||
oldincludedir = @oldincludedir@
|
||||
openal_LIBS = @openal_LIBS@
|
||||
opengl_LIBS = @opengl_LIBS@
|
||||
prefix = @prefix@
|
||||
program_transform_name = @program_transform_name@
|
||||
sbindir = @sbindir@
|
||||
sdl_LIBS = @sdl_LIBS@
|
||||
sharedstatedir = @sharedstatedir@
|
||||
sysconfdir = @sysconfdir@
|
||||
target = @target@
|
||||
target_alias = @target_alias@
|
||||
target_cpu = @target_cpu@
|
||||
target_os = @target_os@
|
||||
target_vendor = @target_vendor@
|
||||
libenetincludedir = $(includedir)/enet
|
||||
libenetinclude_HEADERS = \
|
||||
types.h \
|
||||
list.h \
|
||||
utility.h \
|
||||
time.h \
|
||||
callbacks.h \
|
||||
unix.h \
|
||||
win32.h \
|
||||
protocol.h \
|
||||
enet.h
|
||||
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
|
||||
&& exit 0; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/enet/include/enet/Makefile'; \
|
||||
cd $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu src/enet/include/enet/Makefile
|
||||
.PRECIOUS: Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
$(top_srcdir)/configure: $(am__configure_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
uninstall-info-am:
|
||||
install-libenetincludeHEADERS: $(libenetinclude_HEADERS)
|
||||
@$(NORMAL_INSTALL)
|
||||
test -z "$(libenetincludedir)" || $(mkdir_p) "$(DESTDIR)$(libenetincludedir)"
|
||||
@list='$(libenetinclude_HEADERS)'; for p in $$list; do \
|
||||
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
||||
f=$(am__strip_dir) \
|
||||
echo " $(libenetincludeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(libenetincludedir)/$$f'"; \
|
||||
$(libenetincludeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(libenetincludedir)/$$f"; \
|
||||
done
|
||||
|
||||
uninstall-libenetincludeHEADERS:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(libenetinclude_HEADERS)'; for p in $$list; do \
|
||||
f=$(am__strip_dir) \
|
||||
echo " rm -f '$(DESTDIR)$(libenetincludedir)/$$f'"; \
|
||||
rm -f "$(DESTDIR)$(libenetincludedir)/$$f"; \
|
||||
done
|
||||
|
||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) ' { files[$$0] = 1; } \
|
||||
END { for (i in files) print i; }'`; \
|
||||
mkid -fID $$unique
|
||||
tags: TAGS
|
||||
|
||||
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
tags=; \
|
||||
here=`pwd`; \
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) ' { files[$$0] = 1; } \
|
||||
END { for (i in files) print i; }'`; \
|
||||
if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
|
||||
test -n "$$unique" || unique=$$empty_fix; \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
$$tags $$unique; \
|
||||
fi
|
||||
ctags: CTAGS
|
||||
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
tags=; \
|
||||
here=`pwd`; \
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) ' { files[$$0] = 1; } \
|
||||
END { for (i in files) print i; }'`; \
|
||||
test -z "$(CTAGS_ARGS)$$tags$$unique" \
|
||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||||
$$tags $$unique
|
||||
|
||||
GTAGS:
|
||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
||||
&& cd $(top_srcdir) \
|
||||
&& gtags -i $(GTAGS_ARGS) $$here
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
|
||||
list='$(DISTFILES)'; for file in $$list; do \
|
||||
case $$file in \
|
||||
$(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
|
||||
$(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
|
||||
esac; \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
||||
dir="/$$dir"; \
|
||||
$(mkdir_p) "$(distdir)$$dir"; \
|
||||
else \
|
||||
dir=''; \
|
||||
fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
||||
fi; \
|
||||
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
||||
else \
|
||||
test -f $(distdir)/$$file \
|
||||
|| cp -p $$d/$$file $(distdir)/$$file \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
check-am: all-am
|
||||
check: check-am
|
||||
all-am: Makefile $(HEADERS)
|
||||
installdirs:
|
||||
for dir in "$(DESTDIR)$(libenetincludedir)"; do \
|
||||
test -z "$$dir" || $(mkdir_p) "$$dir"; \
|
||||
done
|
||||
install: install-am
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
`test -z '$(STRIP)' || \
|
||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-generic mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-generic distclean-tags
|
||||
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-am
|
||||
|
||||
info: info-am
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am: install-libenetincludeHEADERS
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-info: install-info-am
|
||||
|
||||
install-man:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-generic
|
||||
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-am
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am: uninstall-info-am uninstall-libenetincludeHEADERS
|
||||
|
||||
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
|
||||
ctags distclean distclean-generic distclean-tags distdir dvi \
|
||||
dvi-am html html-am info info-am install install-am \
|
||||
install-data install-data-am install-exec install-exec-am \
|
||||
install-info install-info-am install-libenetincludeHEADERS \
|
||||
install-man install-strip installcheck installcheck-am \
|
||||
installdirs maintainer-clean maintainer-clean-generic \
|
||||
mostlyclean mostlyclean-generic pdf pdf-am ps ps-am tags \
|
||||
uninstall uninstall-am uninstall-info-am \
|
||||
uninstall-libenetincludeHEADERS
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
@ -1,87 +0,0 @@
|
||||
// SuperTuxKart - a fun racing game with go-kart
|
||||
// Copyright (C) 2006 SuperTuxKart-Team
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU General Public License
|
||||
// as published by the Free Software Foundation; either version 3
|
||||
// of the License, or (at your option) any later version.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
#include <SDL/SDL.h>
|
||||
|
||||
#include "network_info.hpp"
|
||||
#include "widget_manager.hpp"
|
||||
#include "translation.hpp"
|
||||
#include "network/network_manager.hpp"
|
||||
#include "stk_config.hpp"
|
||||
#include "gui/menu_manager.hpp"
|
||||
|
||||
enum WidgetTokens
|
||||
{
|
||||
WTOK_MSG,
|
||||
WTOK_CLIENT,
|
||||
WTOK_OK
|
||||
};
|
||||
|
||||
NetworkInfo::NetworkInfo()
|
||||
{
|
||||
widget_manager->reset();
|
||||
Widget *w_prev=widget_manager->addTitleWgt( WTOK_MSG, 60, 7, _("Waiting for clients ...") );
|
||||
w_prev->setPosition(WGT_DIR_CENTER, 0.0, NULL,
|
||||
WGT_DIR_FROM_TOP, 0.1f, NULL);
|
||||
|
||||
// Display a single space to avoid warnings from the widget_manager
|
||||
Widget *w=widget_manager->addTextWgt(WTOK_CLIENT, 60, 10, " ");
|
||||
w->setPosition(WGT_DIR_CENTER, 0.0, NULL,
|
||||
WGT_DIR_UNDER_WIDGET, 0.0, w_prev);
|
||||
w_prev = w;
|
||||
w=widget_manager->addTextButtonWgt(WTOK_OK, 60, 7, _("OK"));
|
||||
w->setPosition(WGT_DIR_CENTER, 0.0, NULL,
|
||||
WGT_DIR_UNDER_WIDGET, 0.1f, w_prev);
|
||||
widget_manager->layout(WGT_AREA_TOP);
|
||||
m_num_clients = 0;
|
||||
} // NetworkInfo
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
NetworkInfo::~NetworkInfo()
|
||||
{
|
||||
widget_manager->reset();
|
||||
}
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
void NetworkInfo::update(float DELTA)
|
||||
{
|
||||
widget_manager->update(0.0f);
|
||||
if(m_num_clients==network_manager->getNumClients()) return;
|
||||
|
||||
// At least one new client has connected:
|
||||
std::string s="";
|
||||
m_num_clients = network_manager->getNumClients();
|
||||
for(unsigned int i=1; i<=m_num_clients; i++)
|
||||
{
|
||||
s+=network_manager->getClientName(i)+"\n";
|
||||
}
|
||||
widget_manager->setWgtText(WTOK_CLIENT, s);
|
||||
|
||||
} // update
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
void NetworkInfo::select()
|
||||
{
|
||||
switch( widget_manager->getSelectedWgt() )
|
||||
{
|
||||
case WTOK_OK:
|
||||
network_manager->switchToCharacterSelection();
|
||||
menu_manager->popMenu();
|
||||
break;
|
||||
}
|
||||
} // select
|
@ -1,34 +0,0 @@
|
||||
// SuperTuxKart - a fun racing game with go-kart
|
||||
// Copyright (C) 2008 Joerg Henrichs
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU General Public License
|
||||
// as published by the Free Software Foundation; either version 3
|
||||
// of the License, or (at your option) any later version.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
#ifndef HEADER_NETWORK_INFO_H
|
||||
#define HEADER_NETWORK_INFO_H
|
||||
|
||||
#include "base_gui.hpp"
|
||||
|
||||
class NetworkInfo : public BaseGUI
|
||||
{
|
||||
private:
|
||||
unsigned int m_num_clients;
|
||||
public:
|
||||
NetworkInfo();
|
||||
~NetworkInfo();
|
||||
void update(float DELTA);
|
||||
void select();
|
||||
};
|
||||
|
||||
#endif
|
Loading…
x
Reference in New Issue
Block a user