Changeset 1a1f34b in git


Ignore:
Timestamp:
Oct 14, 2015, 3:37:33 PM (9 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', '38dfc5131670d387a89455159ed1e071997eec94')
Children:
a311b308796b46b4d4f62c4adfb1226432365f62
Parents:
20a02439b361225625d282efe4ba0927de9c71cc
Message:
removed unsed files, fixed make_tar.sh and make dist
Files:
20 deleted
9 edited

Legend:

Unmodified
Added
Removed
  • .gitignore

    r20a0243 r1a1f34b  
    6464/omalloc/omConfig.h.in
    6565/omalloc/omExternalConfig.h
    66 /omalloc/omlimits.h
    6766/omalloc/omTables
    6867/omalloc/omTables.dSYM/*
  • Makefile.am

    r20a0243 r1a1f34b  
    1010dox emacs redhat desktop
    1111
    12 EXTRA_DIST = README README.md README.pkg autogen.sh git-version-gen doxy redhat/singular.spec.in redhat/singular.spec
     12EXTRA_DIST = README README.md README.pkg autogen.sh git-version-gen doxy redhat/singular.spec.in GPL2 GPL3
    1313
    1414bin_SCRIPTS = libsingular-config
  • Singular/Makefile.am

    r20a0243 r1a1f34b  
    207207
    208208singularlibrarydir = ${datadir}/singular
    209 singularlibrary = $(SLIB0:%=LIB/%) $(SLIB1:%=LIB/%) $(PLIBS:%=LIB/%)
     209singularlibrary = $(SLIB0:%=LIB/%) $(SLIB1:%=LIB/%) $(PLIBS:%=LIB/%) $(SLIB2:%=LIB/%)
    210210nobase_dist_singularlibrary_DATA = LIB/tst.lib LIB/help.cnf ${singularlibrary}
    211 EXTRA_DIST = make_alllib.sh LIB/all.lib.tmpl singular-libs \
    212              LIB/help.cnf links/slInit_Dynamic.cc
     211EXTRA_DIST = grammar.y libparse.ll make_alllib.sh LIB/all.lib.tmpl \
     212             singular-libs LIB/help.cnf LIB/.singularrc LIB/COPYING \
     213             links/slInit_Dynamic.cc
    213214
    214215singularalllibrarydir = ${datadir}/singular/LIB
  • Singular/singular-libs

    r20a0243 r1a1f34b  
    6161        ncall.lib
    6262
    63 
     63# contributed libs, status not yet decided
     64SLIB2 = KVequiv.lib arr.lib binresol.lib brillnoether.lib chern.lib \
     65        cimonom.lib deflation.lib graal.lib hess.lib lejeune.lib \
     66        mathml.lib maxlike.lib modwalk.lib recover.lib redcgs.lib \
     67        rwalk.lib swalk.lib
  • configure.ac

    r20a0243 r1a1f34b  
    6565])
    6666
    67 #AC_CHECK_LIB(pthread,pthread_create)
    6867AX_PTHREAD([], [
    6968  AC_MSG_ERROR([Pthread library not found. Please set PTHREAD_CFLAGS and PTHREAD_LIBS correctly for your setup])
  • emacs/Makefile.am

    r20a0243 r1a1f34b  
    1717dist_emacs_DATA = $(EMACS)
    1818
    19 # test.sing
    2019# TODO: remove this!
    2120#all-local:
  • kernel/test.cc

    r20a0243 r1a1f34b  
    171171// #include <polys/clapconv.h> // due to factory? :(
    172172// #include <kernel/tgb_internal.h> // :(
    173 // #include <kernel/F4.h> // uses tgb_internal // :(
    174173
    175174
  • make_tar.sh

    r20a0243 r1a1f34b  
    77cp doc/*.man singular-$VERSION/doc/.
    88command rm singular-$VERSION/.gdbinit singular-$VERSION/*/.gdbinit singular-$VERSION/*/*/.gdbinit singular-$VERSION/*/*/*/.gdbinit
     9command rm singular-$VERSION/IntegerProgramming/README
    910command rm -rf singular-$VERSION/modules
    1011command rm -rf singular-$VERSION/factory/old
     12cd singular-$VERSION
     13./autogen.sh
     14cd ..
    1115command rm -rf singular-$VERSION/autom4te.cache
    1216command rm -rf singular-$VERSION/*/autom4te.cache
    1317command rm -rf singular-$VERSION/*/*/autom4te.cache
    14 cd singular-$VERSION
    15 ./autogen.sh
    16 cd ..
     18command rm -rf singular-$VERSION/omalloc/Misc
     19command rm -rf singular-$VERSION/Singular/LIB/surfex
     20command rm -rf singular-$VERSION/Singular/dyn_modules/*/test*sh
     21command rm -rf singular-$VERSION/Singular/cnf2ideal.py
     22command rm -rf singular-$VERSION/kernel/old singular-$VERSION/kernel/sample
     23command rm -rf singular-$VERSION/dox/Doxyfile.html.all singular-$VERSION/dox/Doxyfile.in1 singular-$VERSION/dox/Doxyfile.latex.short singular-$VERSION/dox/readme
     24command rm singular-$VERSION/factory/ConwayList.txt
     25command rm -rf singular-$VERSION/logo  singular-$VERSION/standalone.test  singular-$VERSION/templates  singular-$VERSION/tests
    1726tar cf singular-$VERSION.tar singular-$VERSION
    1827gzip -9 -f singular-$VERSION.tar
  • omalloc/Makefile.am

    r20a0243 r1a1f34b  
    2525omalloc_provide.c omAllocFunc.c    omallocClass.cc
    2626
    27 EXTRA_DIST = omalloc.c omtTestAlloc.c omtTest.h omMmap.c
     27EXTRA_DIST = omalloc_debug.c omalloc.c omtTestAlloc.c omtTest.h omMmap.c
    2828
    2929AM_CPPFLAGS =-I${top_srcdir}/.. -I${top_builddir}/..
Note: See TracChangeset for help on using the changeset viewer.