From: Guo-Fu Tseng Date: Thu, 25 Jun 2015 06:14:53 +0000 (+0800) Subject: Remove temporary files from git tree X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=82889446bfe5e51f578c136c16cb6d5f782fe006;p=jerasure.git Remove temporary files from git tree --- diff --git a/Examples/makefile.orig b/Examples/makefile.orig deleted file mode 100644 index d838ee6..0000000 --- a/Examples/makefile.orig +++ /dev/null @@ -1,203 +0,0 @@ -# Examples/makefile -# Jerasure - A C/C++ Library for a Variety of Reed-Solomon and RAID-6 Erasure Coding Techniques -# -# Revision 1.2A -# May 24, 2011 -# -# James S. Plank -# Department of Electrical Engineering and Computer Science -# University of Tennessee -# Knoxville, TN 37996 -# plank@cs.utk.edu -# -# Copyright (c) 2011, James S. Plank -# All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions -# are met: -# -# - Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# -# - Redistributions in binary form must reproduce the above copyright -# notice, this list of conditions and the following disclaimer in -# the documentation and/or other materials provided with the -# distribution. -# -# - Neither the name of the University of Tennessee nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -# HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS -# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED -# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY -# WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. - -PREFIX=/usr/local -BINDIR=${PREFIX}/bin -LIBDIR=${PREFIX}/lib -INCDIR=${PREFIX}/include -CC = gcc -CFLAGS = -O2 -I$(HOME)/include - -ALL = jerasure_01 \ - jerasure_02 \ - jerasure_03 \ - jerasure_04 \ - jerasure_05 \ - jerasure_06 \ - jerasure_07 \ - jerasure_08 \ - reed_sol_01 \ - reed_sol_02 \ - reed_sol_03 \ - reed_sol_04 \ - reed_sol_test_gf \ - reed_sol_time_gf \ - reed_sol_hard_time_gf \ - cauchy_01 \ - cauchy_02 \ - cauchy_03 \ - cauchy_04 \ - liberation_01 \ - encoder \ - decoder \ - -all: $(ALL) - -clean: - rm -f core *.o $(ALL) a.out cauchy.h cauchy.c liberation.h liberation.c reed_sol.c reed_sol.h\ - jerasure.c jerasure.h galois.c galois.h - -.SUFFIXES: .c .o -.c.o: - $(CC) $(CFLAGS) -c $*.c - -liberation.h: ../liberation.h - rm -f liberation.h ; cp ../liberation.h . ; chmod 0444 liberation.h - -liberation.c: ../liberation.c - rm -f liberation.c ; cp ../liberation.c . ; chmod 0444 liberation.c - -cauchy.h: ../cauchy.h - rm -f cauchy.h ; cp ../cauchy.h . ; chmod 0444 cauchy.h - -cauchy.c: ../cauchy.c - rm -f cauchy.c ; cp ../cauchy.c . ; chmod 0444 cauchy.c - -reed_sol.h: ../reed_sol.h - rm -f reed_sol.h ; cp ../reed_sol.h . ; chmod 0444 reed_sol.h - -reed_sol.c: ../reed_sol.c - rm -f reed_sol.c ; cp ../reed_sol.c . ; chmod 0444 reed_sol.c - -jerasure.h: ../jerasure.h - rm -f jerasure.h ; cp ../jerasure.h . ; chmod 0444 jerasure.h - -jerasure.c: ../jerasure.c - rm -f jerasure.c ; cp ../jerasure.c . ; chmod 0444 jerasure.c - -galois.h: ../galois.h - rm -f galois.h ; cp ../galois.h . ; chmod 0444 galois.h - -galois.c: ../galois.c - rm -f galois.c ; cp ../galois.c . ; chmod 0444 galois.c - -jerasure.o: jerasure.h galois.h - -jerasure_01.o: galois.h jerasure.h -jerasure_01: jerasure_01.o galois.o jerasure.o - $(CC) $(CFLAGS) -o jerasure_01 jerasure_01.o jerasure.o galois.o -lgf_complete - -jerasure_02.o: galois.h jerasure.h -jerasure_02: jerasure_02.o galois.o jerasure.o - $(CC) $(CFLAGS) -o jerasure_02 jerasure_02.o jerasure.o galois.o -lgf_complete - -jerasure_03.o: galois.h jerasure.h -jerasure_03: jerasure_03.o galois.o jerasure.o - $(CC) $(CFLAGS) -o jerasure_03 jerasure_03.o jerasure.o galois.o -lgf_complete - -jerasure_04.o: galois.h jerasure.h -jerasure_04: jerasure_04.o galois.o jerasure.o - $(CC) $(CFLAGS) -o jerasure_04 jerasure_04.o jerasure.o galois.o -lgf_complete - -jerasure_05.o: galois.h jerasure.h -jerasure_05: jerasure_05.o galois.o jerasure.o - $(CC) $(CFLAGS) -o jerasure_05 jerasure_05.o jerasure.o galois.o -lgf_complete - -jerasure_06.o: galois.h jerasure.h -jerasure_06: jerasure_06.o galois.o jerasure.o - $(CC) $(CFLAGS) -o jerasure_06 jerasure_06.o jerasure.o galois.o -lgf_complete - -jerasure_07.o: galois.h jerasure.h -jerasure_07: jerasure_07.o galois.o jerasure.o - $(CC) $(CFLAGS) -o jerasure_07 jerasure_07.o jerasure.o galois.o -lgf_complete - -jerasure_08.o: galois.h jerasure.h -jerasure_08: jerasure_08.o galois.o jerasure.o - $(CC) $(CFLAGS) -o jerasure_08 jerasure_08.o jerasure.o galois.o -lgf_complete - -reed_sol_01.o: galois.h reed_sol.h jerasure.h -reed_sol_01: reed_sol_01.o galois.o jerasure.o reed_sol.o - $(CC) $(CFLAGS) -o reed_sol_01 reed_sol_01.o reed_sol.o jerasure.o galois.o -lgf_complete - -reed_sol_02.o: galois.h reed_sol.h jerasure.h -reed_sol_02: reed_sol_02.o galois.o jerasure.o reed_sol.o - $(CC) $(CFLAGS) -o reed_sol_02 reed_sol_02.o reed_sol.o jerasure.o galois.o -lgf_complete - -reed_sol_03.o: galois.h reed_sol.h jerasure.h -reed_sol_03: reed_sol_03.o galois.o jerasure.o reed_sol.o - $(CC) $(CFLAGS) -o reed_sol_03 reed_sol_03.o reed_sol.o jerasure.o galois.o -lgf_complete - -reed_sol_04.o: galois.h reed_sol.h jerasure.h -reed_sol_04: reed_sol_04.o galois.o jerasure.o reed_sol.o - $(CC) $(CFLAGS) -o reed_sol_04 reed_sol_04.o reed_sol.o jerasure.o galois.o -lgf_complete - -cauchy_01.o: galois.h cauchy.h jerasure.h -cauchy_01: cauchy_01.o galois.o jerasure.o cauchy.o - $(CC) $(CFLAGS) -o cauchy_01 cauchy_01.o cauchy.o jerasure.o galois.o -lgf_complete - -cauchy_02.o: galois.h cauchy.h jerasure.h -cauchy_02: cauchy_02.o galois.o jerasure.o cauchy.o - $(CC) $(CFLAGS) -o cauchy_02 cauchy_02.o cauchy.o jerasure.o galois.o -lgf_complete - -cauchy_03.o: galois.h cauchy.h jerasure.h -cauchy_03: cauchy_03.o galois.o jerasure.o cauchy.o - $(CC) $(CFLAGS) -o cauchy_03 cauchy_03.o cauchy.o jerasure.o galois.o -lgf_complete - -cauchy_04.o: galois.h cauchy.h jerasure.h -cauchy_04: cauchy_04.o galois.o jerasure.o cauchy.o - $(CC) $(CFLAGS) -o cauchy_04 cauchy_04.o cauchy.o jerasure.o galois.o -lgf_complete - -liberation_01.o: galois.h liberation.h jerasure.h -liberation_01: liberation_01.o galois.o jerasure.o liberation.o - $(CC) $(CFLAGS) -o liberation_01 liberation_01.o liberation.o jerasure.o galois.o -lgf_complete - -encoder.o: galois.h liberation.h jerasure.h reed_sol.h cauchy.h -encoder: encoder.o galois.o jerasure.o liberation.o reed_sol.o cauchy.o - $(CC) $(CFLAGS) -o encoder encoder.o liberation.o jerasure.o galois.o reed_sol.o cauchy.o -lgf_complete - -decoder.o: galois.h liberation.h jerasure.h reed_sol.h cauchy.h -decoder: decoder.o galois.o jerasure.o liberation.o reed_sol.o cauchy.o - $(CC) $(CFLAGS) -o decoder decoder.o liberation.o jerasure.o galois.o reed_sol.o cauchy.o -lgf_complete - -reed_sol_test_gf.o: galois.h reed_sol.h jerasure.h -reed_sol_test_gf: reed_sol_test_gf.o galois.o jerasure.o reed_sol.o - $(CC) $(CFLAGS) -o reed_sol_test_gf reed_sol_test_gf.o reed_sol.o jerasure.o galois.o -lgf_complete - -reed_sol_time_gf.o: galois.h reed_sol.h jerasure.h -reed_sol_time_gf: reed_sol_time_gf.o galois.o jerasure.o reed_sol.o - $(CC) $(CFLAGS) -o reed_sol_time_gf reed_sol_time_gf.o reed_sol.o jerasure.o galois.o -lgf_complete - -reed_sol_hard_time_gf.o: galois.h reed_sol.h jerasure.h -reed_sol_hard_time_gf: reed_sol_hard_time_gf.o galois.o jerasure.o reed_sol.o - $(CC) $(CFLAGS) -o reed_sol_hard_time_gf reed_sol_hard_time_gf.o reed_sol.o jerasure.o galois.o -lgf_complete diff --git a/include/config.h.in~ b/include/config.h.in~ deleted file mode 100644 index a20c1e3..0000000 --- a/include/config.h.in~ +++ /dev/null @@ -1,107 +0,0 @@ -/* include/config.h.in. Generated from configure.ac by autoheader. */ - -/* Support Altivec instructions */ -#undef HAVE_ALTIVEC - -/* Support AVX (Advanced Vector Extensions) instructions */ -#undef HAVE_AVX - -/* Define to 1 if you have the header file. */ -#undef HAVE_DLFCN_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_GF_COMPLETE_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_GF_GENERAL_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_GF_INT_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_GF_METHOD_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_GF_RAND_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_INTTYPES_H - -/* Define to 1 if you have the `gf_complete' library (-lgf_complete). */ -#undef HAVE_LIBGF_COMPLETE - -/* Define to 1 if you have the header file. */ -#undef HAVE_MEMORY_H - -/* Support mmx instructions */ -#undef HAVE_MMX - -/* Support SSE (Streaming SIMD Extensions) instructions */ -#undef HAVE_SSE - -/* Support SSE2 (Streaming SIMD Extensions 2) instructions */ -#undef HAVE_SSE2 - -/* Support SSE3 (Streaming SIMD Extensions 3) instructions */ -#undef HAVE_SSE3 - -/* Support SSSE4.1 (Streaming SIMD Extensions 4.1) instructions */ -#undef HAVE_SSE4_1 - -/* Support SSSE4.2 (Streaming SIMD Extensions 4.2) instructions */ -#undef HAVE_SSE4_2 - -/* Support SSSE3 (Supplemental Streaming SIMD Extensions 3) instructions */ -#undef HAVE_SSSE3 - -/* Define to 1 if you have the header file. */ -#undef HAVE_STDINT_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_STDLIB_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_STRINGS_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_STRING_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_SYS_STAT_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_SYS_TYPES_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_UNISTD_H - -/* Define to the sub-directory in which libtool stores uninstalled libraries. - */ -#undef LT_OBJDIR - -/* Name of package */ -#undef PACKAGE - -/* Define to the address where bug reports for this package should be sent. */ -#undef PACKAGE_BUGREPORT - -/* Define to the full name of this package. */ -#undef PACKAGE_NAME - -/* Define to the full name and version of this package. */ -#undef PACKAGE_STRING - -/* Define to the one symbol short name of this package. */ -#undef PACKAGE_TARNAME - -/* Define to the home page for this package. */ -#undef PACKAGE_URL - -/* Define to the version of this package. */ -#undef PACKAGE_VERSION - -/* Define to 1 if you have the ANSI C header files. */ -#undef STDC_HEADERS - -/* Version number of package */ -#undef VERSION diff --git a/makefile.orig b/makefile.orig deleted file mode 100644 index f2ffeb0..0000000 --- a/makefile.orig +++ /dev/null @@ -1,79 +0,0 @@ -# Makefile -# James S. Plank -# -# JERASURE - Library for Erasure Coding -# Copright (C) 2007 James S. Plank -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library 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 -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -# -# James S. Plank -# Department of Electrical Engineering and Computer Science -# University of Tennessee -# Knoxville, TN 37996 -# plank@cs.utk.edu - -# $Revision: 1.0 $ -# $Date: 2007/09/25 15:12:20 $ - -UNAME := $(shell uname) - -ifeq ($(UNAME), Linux) -LIBARGS=-shared -Wl,-soname,libJerasure.so.0 -endif -ifeq ($(UNAME), Darwin) -LIBARGS=-shared -Wl,-install_name,libJerasure.so.0 -endif - -PREFIX=/usr/local -BINDIR=${PREFIX}/bin -LIBDIR=${PREFIX}/lib -INCDIR=${PREFIX}/include - -CC = gcc -CFLAGS = -O3 -I${INCDIR} -L${LIBDIR} -fPIC - -ALL = galois.o jerasure.o reed_sol.o cauchy.o liberation.o lib/libJerasure.so -OBJS = galois.o jerasure.o reed_sol.o cauchy.o liberation.o - -all: $(ALL) - -clean: - rm -f core *.o $(ALL) a.out lib/libJerasure.so.0 - -lib: - mkdir -p lib - -.SUFFIXES: .c .o -.c.o: - $(CC) $(CFLAGS) -c $*.c - -galois.o: galois.h -jerasure.o: jerasure.h galois.h -reed_sol.o: jerasure.h galois.h reed_sol.h -cauchy.o: jerasure.h galois.h cauchy.h -liberation.o: jerasure.h galois.h liberation.h - -lib/libJerasure.so: lib/libJerasure.so.0 - ln -sf libJerasure.so.0 lib/libJerasure.so - -lib/libJerasure.so.0: lib $(OBJS) - $(CC) $(LIBARGS) \ - -o lib/libJerasure.so.0 $(OBJS) -lgf_complete - -install: lib/libJerasure.so - cp -P lib/libJerasure.so* ${LIBDIR} - mkdir -p ${INCDIR} - cp *.h ${INCDIR} -