diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | AUTHORS | 0 | ||||
-rw-r--r-- | COPYING (renamed from LICENSE) | 0 | ||||
-rw-r--r-- | ChangeLog | 0 | ||||
-rw-r--r-- | INSTALL | 0 | ||||
-rw-r--r-- | Makefile.am | 1 | ||||
-rw-r--r-- | Makefile.in | 14 | ||||
-rw-r--r-- | NEWS | 0 | ||||
-rw-r--r-- | aclocal.m4 | 35 | ||||
-rwxr-xr-x | buildconf | 4 | ||||
-rwxr-xr-x | compile | 143 | ||||
-rw-r--r-- | config.h.in | 3 | ||||
-rwxr-xr-x | configure | 131 | ||||
-rw-r--r-- | configure.in | 6 | ||||
-rw-r--r-- | src/Makefile.am | 8 | ||||
-rw-r--r-- | src/Makefile.in | 99 |
16 files changed, 411 insertions, 34 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8c460fe --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.anjuta* diff --git a/ChangeLog b/ChangeLog new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/ChangeLog diff --git a/Makefile.am b/Makefile.am index 90cfef3..be5c1fe 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,2 +1 @@ -AUTOMAKE_OPTIONS = foreign SUBDIRS = libsysfs src diff --git a/Makefile.in b/Makefile.in index e5b0617..fd33a4e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -36,8 +36,9 @@ host_triplet = @host@ subdir = . DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(srcdir)/config.h.in \ - $(top_srcdir)/configure config.guess config.sub depcomp \ - install-sh ltmain.sh missing + $(top_srcdir)/configure AUTHORS COPYING ChangeLog INSTALL NEWS \ + TODO compile config.guess config.sub depcomp install-sh \ + ltmain.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) \ @@ -212,7 +213,6 @@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ -AUTOMAKE_OPTIONS = foreign SUBDIRS = libsysfs src all: config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive @@ -224,15 +224,15 @@ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ - echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ - $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ + echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \ + $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \ && exit 0; \ exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign Makefile + $(AUTOMAKE) --gnu Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ @@ -8676,6 +8676,41 @@ AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ]) +# Copyright (C) 1999, 2000, 2001, 2003, 2004, 2005, 2008 +# Free Software Foundation, Inc. +# +# This file 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. + +# serial 6 + +# AM_PROG_CC_C_O +# -------------- +# Like AC_PROG_CC_C_O, but changed for automake. +AC_DEFUN([AM_PROG_CC_C_O], +[AC_REQUIRE([AC_PROG_CC_C_O])dnl +AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +AC_REQUIRE_AUX_FILE([compile])dnl +# FIXME: we rely on the cache variable name because +# there is no other way. +set dummy $CC +am_cc=`echo $[2] | sed ['s/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/']` +eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o +if test "$am_t" != yes; then + # Losing compiler, so override with the script. + # FIXME: It is wrong to rewrite CC. + # But if we don't then we get into trouble of one sort or another. + # A longer-term fix would be to have automake use am__CC in this case, + # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" + CC="$am_aux_dir/compile $CC" +fi +dnl Make sure AC_PROG_CC is never called again, or it will override our +dnl setting of CC. +m4_define([AC_PROG_CC], + [m4_fatal([AC_PROG_CC cannot be called after AM_PROG_CC_C_O])]) +]) + # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008 diff --git a/buildconf b/buildconf new file mode 100755 index 0000000..fab73d5 --- /dev/null +++ b/buildconf @@ -0,0 +1,4 @@ +#!/bin/bash +rm -rf aclocal.m4 config.h.in autom4te.cache/ Makefile.in libsysfs/Makefile.in src/Makefile.in configure && +aclocal && autoheader && automake && autoconf && +rm -rf autom4te*.cache @@ -0,0 +1,143 @@ +#! /bin/sh +# Wrapper for compilers which do not understand `-c -o'. + +scriptversion=2009-10-06.20; # UTC + +# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2009 Free Software +# Foundation, Inc. +# Written by Tom Tromey <tromey@cygnus.com>. +# +# 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 2, 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, see <http://www.gnu.org/licenses/>. + +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +# This file is maintained in Automake, please report +# bugs to <bug-automake@gnu.org> or send patches to +# <automake-patches@gnu.org>. + +case $1 in + '') + echo "$0: No command. Try \`$0 --help' for more information." 1>&2 + exit 1; + ;; + -h | --h*) + cat <<\EOF +Usage: compile [--help] [--version] PROGRAM [ARGS] + +Wrapper for compilers which do not understand `-c -o'. +Remove `-o dest.o' from ARGS, run PROGRAM with the remaining +arguments, and rename the output as expected. + +If you are trying to build a whole package this is not the +right script to run: please start by reading the file `INSTALL'. + +Report bugs to <bug-automake@gnu.org>. +EOF + exit $? + ;; + -v | --v*) + echo "compile $scriptversion" + exit $? + ;; +esac + +ofile= +cfile= +eat= + +for arg +do + if test -n "$eat"; then + eat= + else + case $1 in + -o) + # configure might choose to run compile as `compile cc -o foo foo.c'. + # So we strip `-o arg' only if arg is an object. + eat=1 + case $2 in + *.o | *.obj) + ofile=$2 + ;; + *) + set x "$@" -o "$2" + shift + ;; + esac + ;; + *.c) + cfile=$1 + set x "$@" "$1" + shift + ;; + *) + set x "$@" "$1" + shift + ;; + esac + fi + shift +done + +if test -z "$ofile" || test -z "$cfile"; then + # If no `-o' option was seen then we might have been invoked from a + # pattern rule where we don't need one. That is ok -- this is a + # normal compilation that the losing compiler can handle. If no + # `.c' file was seen then we are probably linking. That is also + # ok. + exec "$@" +fi + +# Name of file we expect compiler to create. +cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'` + +# Create the lock directory. +# Note: use `[/\\:.-]' here to ensure that we don't use the same name +# that we are using for the .o file. Also, base the name on the expected +# object file name, since that is what matters with a parallel build. +lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d +while true; do + if mkdir "$lockdir" >/dev/null 2>&1; then + break + fi + sleep 1 +done +# FIXME: race condition here if user kills between mkdir and trap. +trap "rmdir '$lockdir'; exit 1" 1 2 15 + +# Run the compile. +"$@" +ret=$? + +if test -f "$cofile"; then + test "$cofile" = "$ofile" || mv "$cofile" "$ofile" +elif test -f "${cofile}bj"; then + test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile" +fi + +rmdir "$lockdir" +exit $ret + +# Local Variables: +# mode: shell-script +# sh-indentation: 2 +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" +# End: diff --git a/config.h.in b/config.h.in index 1d09123..92c62c1 100644 --- a/config.h.in +++ b/config.h.in @@ -82,6 +82,9 @@ */ #undef LT_OBJDIR +/* Define to 1 if your C compiler doesn't accept -c and -o together. */ +#undef NO_MINUS_C_MINUS_O + /* Name of package */ #undef PACKAGE @@ -567,7 +567,7 @@ PACKAGE_STRING='NetNuke 2.0.2' PACKAGE_BUGREPORT='jhunkeler@gmail.com' PACKAGE_URL='https://github.com/jhunkeler/NetNuke' -ac_unique_file="src/netnuke.c" +ac_unique_file="config.h.in" # Factoring default headers for most tests. ac_includes_default="\ #include <stdio.h> @@ -2923,9 +2923,6 @@ am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' ac_config_headers="$ac_config_headers config.h" -# Compile with safe optimizations and no debugging by default -CFLAGS="-Os" - # Check for programs. for ac_prog in gawk mawk nawk awk do @@ -3948,6 +3945,132 @@ else fi +if test "x$CC" != xcc; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC and cc understand -c and -o together" >&5 +$as_echo_n "checking whether $CC and cc understand -c and -o together... " >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether cc understands -c and -o together" >&5 +$as_echo_n "checking whether cc understands -c and -o together... " >&6; } +fi +set dummy $CC; ac_cc=`$as_echo "$2" | + sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'` +if eval "test \"\${ac_cv_prog_cc_${ac_cc}_c_o+set}\"" = set; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +# Make sure it works both with $CC and with simple cc. +# We do the test twice because some compilers refuse to overwrite an +# existing .o file with -o, though they will create one. +ac_try='$CC -c conftest.$ac_ext -o conftest2.$ac_objext >&5' +rm -f conftest2.* +if { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && + test -f conftest2.$ac_objext && { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; +then + eval ac_cv_prog_cc_${ac_cc}_c_o=yes + if test "x$CC" != xcc; then + # Test first that cc exists at all. + if { ac_try='cc -c conftest.$ac_ext >&5' + { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; }; then + ac_try='cc -c conftest.$ac_ext -o conftest2.$ac_objext >&5' + rm -f conftest2.* + if { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && + test -f conftest2.$ac_objext && { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; + then + # cc works too. + : + else + # cc exists but doesn't like -o. + eval ac_cv_prog_cc_${ac_cc}_c_o=no + fi + fi + fi +else + eval ac_cv_prog_cc_${ac_cc}_c_o=no +fi +rm -f core conftest* + +fi +if eval test \$ac_cv_prog_cc_${ac_cc}_c_o = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +$as_echo "#define NO_MINUS_C_MINUS_O 1" >>confdefs.h + +fi + +# FIXME: we rely on the cache variable name because +# there is no other way. +set dummy $CC +am_cc=`echo $2 | sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'` +eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o +if test "$am_t" != yes; then + # Losing compiler, so override with the script. + # FIXME: It is wrong to rewrite CC. + # But if we don't then we get into trouble of one sort or another. + # A longer-term fix would be to have automake use am__CC in this case, + # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" + CC="$am_aux_dir/compile $CC" +fi + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 $as_echo_n "checking whether ln -s works... " >&6; } diff --git a/configure.in b/configure.in index f93934f..5753102 100644 --- a/configure.in +++ b/configure.in @@ -2,15 +2,13 @@ AC_PREREQ([2.66]) AC_INIT([NetNuke], [2.0.2], [jhunkeler@gmail.com], [netnuke], [https://github.com/jhunkeler/NetNuke]) AM_INIT_AUTOMAKE(1.11.1) -AC_CONFIG_SRCDIR([src/netnuke.c]) +AC_CONFIG_SRCDIR([config.h.in]) AC_CONFIG_HEADERS([config.h]) -# Compile with safe optimizations and no debugging by default -CFLAGS="-Os" - # Check for programs. AC_PROG_AWK AC_PROG_CC +AM_PROG_CC_C_O AC_PROG_INSTALL AC_PROG_LN_S AC_PROG_MAKE_SET diff --git a/src/Makefile.am b/src/Makefile.am index d47e3ca..563b490 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,10 +1,8 @@ -AUTOMAKE_OPTIONS = foreign - -AM_CFLAGS=-Wall -W -Wstrict-prototypes -I../include -static -AM_LDFLAGS=-L../libsysfs -lpthread -lsysfs -all-static - sbin_PROGRAMS= netnuke +netnuke_CFLAGS=-Wall -W -Wstrict-prototypes -I../include -static +netnuke_LDFLAGS=-L../libsysfs -lpthread -lsysfs -all-static + netnuke_SOURCES= bus.c \ misc.c \ netnuke.c \ diff --git a/src/Makefile.in b/src/Makefile.in index ce2b080..47723f9 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -47,10 +47,14 @@ CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(sbindir)" PROGRAMS = $(sbin_PROGRAMS) -am_netnuke_OBJECTS = bus.$(OBJEXT) misc.$(OBJEXT) netnuke.$(OBJEXT) \ - nukectl.$(OBJEXT) output_redirect.$(OBJEXT) +am_netnuke_OBJECTS = netnuke-bus.$(OBJEXT) netnuke-misc.$(OBJEXT) \ + netnuke-netnuke.$(OBJEXT) netnuke-nukectl.$(OBJEXT) \ + netnuke-output_redirect.$(OBJEXT) netnuke_OBJECTS = $(am_netnuke_OBJECTS) netnuke_LDADD = $(LDADD) +netnuke_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CCLD) $(netnuke_CFLAGS) $(CFLAGS) \ + $(netnuke_LDFLAGS) $(LDFLAGS) -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles @@ -180,9 +184,8 @@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ -AUTOMAKE_OPTIONS = foreign -AM_CFLAGS = -Wall -W -Wstrict-prototypes -I../include -static -AM_LDFLAGS = -L../libsysfs -lpthread -lsysfs -all-static +netnuke_CFLAGS = -Wall -W -Wstrict-prototypes -I../include -static +netnuke_LDFLAGS = -L../libsysfs -lpthread -lsysfs -all-static netnuke_SOURCES = bus.c \ misc.c \ netnuke.c \ @@ -202,9 +205,9 @@ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/Makefile + $(AUTOMAKE) --gnu src/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ @@ -268,7 +271,7 @@ clean-sbinPROGRAMS: rm -f $$list netnuke$(EXEEXT): $(netnuke_OBJECTS) $(netnuke_DEPENDENCIES) @rm -f netnuke$(EXEEXT) - $(LINK) $(netnuke_OBJECTS) $(netnuke_LDADD) $(LIBS) + $(netnuke_LINK) $(netnuke_OBJECTS) $(netnuke_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) @@ -276,11 +279,11 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bus.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/misc.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/netnuke.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nukectl.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/output_redirect.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/netnuke-bus.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/netnuke-misc.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/netnuke-netnuke.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/netnuke-nukectl.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/netnuke-output_redirect.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @@ -303,6 +306,76 @@ distclean-compile: @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< +netnuke-bus.o: bus.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netnuke_CFLAGS) $(CFLAGS) -MT netnuke-bus.o -MD -MP -MF $(DEPDIR)/netnuke-bus.Tpo -c -o netnuke-bus.o `test -f 'bus.c' || echo '$(srcdir)/'`bus.c +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/netnuke-bus.Tpo $(DEPDIR)/netnuke-bus.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='bus.c' object='netnuke-bus.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netnuke_CFLAGS) $(CFLAGS) -c -o netnuke-bus.o `test -f 'bus.c' || echo '$(srcdir)/'`bus.c + +netnuke-bus.obj: bus.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netnuke_CFLAGS) $(CFLAGS) -MT netnuke-bus.obj -MD -MP -MF $(DEPDIR)/netnuke-bus.Tpo -c -o netnuke-bus.obj `if test -f 'bus.c'; then $(CYGPATH_W) 'bus.c'; else $(CYGPATH_W) '$(srcdir)/bus.c'; fi` +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/netnuke-bus.Tpo $(DEPDIR)/netnuke-bus.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='bus.c' object='netnuke-bus.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netnuke_CFLAGS) $(CFLAGS) -c -o netnuke-bus.obj `if test -f 'bus.c'; then $(CYGPATH_W) 'bus.c'; else $(CYGPATH_W) '$(srcdir)/bus.c'; fi` + +netnuke-misc.o: misc.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netnuke_CFLAGS) $(CFLAGS) -MT netnuke-misc.o -MD -MP -MF $(DEPDIR)/netnuke-misc.Tpo -c -o netnuke-misc.o `test -f 'misc.c' || echo '$(srcdir)/'`misc.c +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/netnuke-misc.Tpo $(DEPDIR)/netnuke-misc.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='misc.c' object='netnuke-misc.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netnuke_CFLAGS) $(CFLAGS) -c -o netnuke-misc.o `test -f 'misc.c' || echo '$(srcdir)/'`misc.c + +netnuke-misc.obj: misc.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netnuke_CFLAGS) $(CFLAGS) -MT netnuke-misc.obj -MD -MP -MF $(DEPDIR)/netnuke-misc.Tpo -c -o netnuke-misc.obj `if test -f 'misc.c'; then $(CYGPATH_W) 'misc.c'; else $(CYGPATH_W) '$(srcdir)/misc.c'; fi` +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/netnuke-misc.Tpo $(DEPDIR)/netnuke-misc.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='misc.c' object='netnuke-misc.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netnuke_CFLAGS) $(CFLAGS) -c -o netnuke-misc.obj `if test -f 'misc.c'; then $(CYGPATH_W) 'misc.c'; else $(CYGPATH_W) '$(srcdir)/misc.c'; fi` + +netnuke-netnuke.o: netnuke.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netnuke_CFLAGS) $(CFLAGS) -MT netnuke-netnuke.o -MD -MP -MF $(DEPDIR)/netnuke-netnuke.Tpo -c -o netnuke-netnuke.o `test -f 'netnuke.c' || echo '$(srcdir)/'`netnuke.c +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/netnuke-netnuke.Tpo $(DEPDIR)/netnuke-netnuke.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='netnuke.c' object='netnuke-netnuke.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netnuke_CFLAGS) $(CFLAGS) -c -o netnuke-netnuke.o `test -f 'netnuke.c' || echo '$(srcdir)/'`netnuke.c + +netnuke-netnuke.obj: netnuke.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netnuke_CFLAGS) $(CFLAGS) -MT netnuke-netnuke.obj -MD -MP -MF $(DEPDIR)/netnuke-netnuke.Tpo -c -o netnuke-netnuke.obj `if test -f 'netnuke.c'; then $(CYGPATH_W) 'netnuke.c'; else $(CYGPATH_W) '$(srcdir)/netnuke.c'; fi` +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/netnuke-netnuke.Tpo $(DEPDIR)/netnuke-netnuke.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='netnuke.c' object='netnuke-netnuke.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netnuke_CFLAGS) $(CFLAGS) -c -o netnuke-netnuke.obj `if test -f 'netnuke.c'; then $(CYGPATH_W) 'netnuke.c'; else $(CYGPATH_W) '$(srcdir)/netnuke.c'; fi` + +netnuke-nukectl.o: nukectl.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netnuke_CFLAGS) $(CFLAGS) -MT netnuke-nukectl.o -MD -MP -MF $(DEPDIR)/netnuke-nukectl.Tpo -c -o netnuke-nukectl.o `test -f 'nukectl.c' || echo '$(srcdir)/'`nukectl.c +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/netnuke-nukectl.Tpo $(DEPDIR)/netnuke-nukectl.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='nukectl.c' object='netnuke-nukectl.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netnuke_CFLAGS) $(CFLAGS) -c -o netnuke-nukectl.o `test -f 'nukectl.c' || echo '$(srcdir)/'`nukectl.c + +netnuke-nukectl.obj: nukectl.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netnuke_CFLAGS) $(CFLAGS) -MT netnuke-nukectl.obj -MD -MP -MF $(DEPDIR)/netnuke-nukectl.Tpo -c -o netnuke-nukectl.obj `if test -f 'nukectl.c'; then $(CYGPATH_W) 'nukectl.c'; else $(CYGPATH_W) '$(srcdir)/nukectl.c'; fi` +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/netnuke-nukectl.Tpo $(DEPDIR)/netnuke-nukectl.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='nukectl.c' object='netnuke-nukectl.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netnuke_CFLAGS) $(CFLAGS) -c -o netnuke-nukectl.obj `if test -f 'nukectl.c'; then $(CYGPATH_W) 'nukectl.c'; else $(CYGPATH_W) '$(srcdir)/nukectl.c'; fi` + +netnuke-output_redirect.o: output_redirect.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netnuke_CFLAGS) $(CFLAGS) -MT netnuke-output_redirect.o -MD -MP -MF $(DEPDIR)/netnuke-output_redirect.Tpo -c -o netnuke-output_redirect.o `test -f 'output_redirect.c' || echo '$(srcdir)/'`output_redirect.c +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/netnuke-output_redirect.Tpo $(DEPDIR)/netnuke-output_redirect.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='output_redirect.c' object='netnuke-output_redirect.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netnuke_CFLAGS) $(CFLAGS) -c -o netnuke-output_redirect.o `test -f 'output_redirect.c' || echo '$(srcdir)/'`output_redirect.c + +netnuke-output_redirect.obj: output_redirect.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netnuke_CFLAGS) $(CFLAGS) -MT netnuke-output_redirect.obj -MD -MP -MF $(DEPDIR)/netnuke-output_redirect.Tpo -c -o netnuke-output_redirect.obj `if test -f 'output_redirect.c'; then $(CYGPATH_W) 'output_redirect.c'; else $(CYGPATH_W) '$(srcdir)/output_redirect.c'; fi` +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/netnuke-output_redirect.Tpo $(DEPDIR)/netnuke-output_redirect.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='output_redirect.c' object='netnuke-output_redirect.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netnuke_CFLAGS) $(CFLAGS) -c -o netnuke-output_redirect.obj `if test -f 'output_redirect.c'; then $(CYGPATH_W) 'output_redirect.c'; else $(CYGPATH_W) '$(srcdir)/output_redirect.c'; fi` + mostlyclean-libtool: -rm -f *.lo |