summaryrefslogtreecommitdiffstats
path: root/funtools/faq/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'funtools/faq/Makefile.in')
-rw-r--r--funtools/faq/Makefile.in135
1 files changed, 0 insertions, 135 deletions
diff --git a/funtools/faq/Makefile.in b/funtools/faq/Makefile.in
deleted file mode 100644
index 09900f5..0000000
--- a/funtools/faq/Makefile.in
+++ /dev/null
@@ -1,135 +0,0 @@
-#
-# This is a Makefile for the Funtools testing. If it has the name "Makefile.in"
-# then it is a template for a Makefile; to generate the actual Makefile,
-# run "./configure", which is a configuration script generated by the
-# "autoconf" program (constructs like "@foo@" will get replaced in the
-# actual Makefile.
-#
-
-#----------------------------------------------------------------
-# Things you can change to personalize the Makefile for your own
-# site (you can make these changes in either Makefile.in or
-# Makefile, but changes to Makefile will get lost if you re-run
-# the configuration script).
-#----------------------------------------------------------------
-
-# Default top-level directories in which to install architecture-
-# specific files (exec_prefix) and machine-independent files such
-# as scripts (prefix). The values specified here may be overridden
-# at configure-time with the --exec-prefix and --prefix options
-# to the "configure" script.
-
-prefix = @prefix@
-exec_prefix = @exec_prefix@
-
-# The following definition can be set to non-null for special systems
-# like AFS with replication. It allows the pathnames used for installation
-# to be different than those used for actually reference files at
-# run-time. INSTALL_ROOT is prepended to $prefix and $exec_prefix
-# when installing files.
-INSTALL_ROOT =
-
-# extra includes for compiling
-INCLUDES = -I. -I$(prefix)/include
-
-# extra libs
-EXTRA_LIBS = @EXTRA_LIBS@
-
-# the full set of libraries for linking
-LIBS = -L.. -lfuntools $(EXTRA_LIBS) -lm
-
-# To change the compiler switches, for example to change from -O
-# to -g, change the following line:
-CFLAGS = @CFLAGS@
-
-# To add ld switches, change the following line:
-LDFLAGS = @LDFLAGS@
-
-# Some versions of make, like SGI's, use the following variable to
-# determine which shell to use for executing commands:
-SHELL = /bin/sh
-
-# extra modules added by configure.in to fix OS bugs
-EXTRA_OBJS = @EXTRA_OBJS@
-
-# There are just too many different versions of "install" around;
-# better to use the install-sh script that comes with the distribution,
-# which is slower but guaranteed to work.
-
-INSTALL = @srcdir@/install-sh -c
-INSTALL_PROGRAM = ${INSTALL}
-INSTALL_DATA = ${INSTALL} -m 644
-
-#----------------------------------------------------------------
-# The information below is modified by the configure script when
-# Makefile is generated from Makefile.in. You shouldn't normally
-# modify any of this stuff by hand.
-#----------------------------------------------------------------
-
-AC_FLAGS = @DEFS@
-RANLIB = @RANLIB@
-
-# web site for installation
-WEBDIR = /proj/rd/www/funtools
-
-#----------------------------------------------------------------
-# The information below should be usable as is. The configure
-# script won't modify it and you shouldn't need to modify it
-# either.
-#----------------------------------------------------------------
-
-CC = @CC@
-
-CC_SWITCHES = ${CFLAGS} ${INCLUDES} ${AC_FLAGS}
-
-DEPEND_SWITCHES = ${CFLAGS} ${INCLUDES} ${AC_FLAGS}
-
-PROGS = tev tim
-
-all: $(PROGS)
-
-tev: tev.o
- $(CC) $(LDFLAGS) tev.o -o tev $(LIBS)
-
-tim: tim.o
- $(CC) $(LDFLAGS) tim.o -o tim $(LIBS)
-
-Makefile: Makefile.in
- $(SHELL) config.status
-
-RM = rm -f
-
-clean:
- $(RM) *.a *.so *.o *.exe core errs *pure* .nfs* \
- foo* *~ *.log \#* TAGS *.E a.out errors \
- $(PROGS) $(TESTPROGS) \
- gmon.out *.pg *.bak \
- config.info config.log \
- *fun*.out doc/*~
- $(RM) -r autom4te.cache
-
-distclean: clean
- $(RM) Makefile config.status config.cache config.log
-
-install:
- @echo "Nothing to install in faq"
-
-www:
- -@( if [ -d ${WEBDIR} ]; then \
- echo "installing in Web site: ${WEBDIR}"; \
- mkdir -p ${WEBDIR}/faq; \
- cp -p *.html ${WEBDIR}/faq/.; \
- else \
- echo "Web site not available for install"; \
- fi;)
-
-pclean:
- $(RM) $(PROGS)
-
-depend:
- makedepend -- $(DEPEND_SWITCHES) -- $(SRCS)
-
-evread.o: evread.c
- $(CC) -c $(CC_SWITCHES) evread.c
-
-# DO NOT DELETE THIS LINE -- make depend depends on it.