Changeset e4a292d in git
- Timestamp:
- Dec 26, 2013, 1:52:48 PM (9 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- e86e21bda42dff533a74d4741008e9bde372d619
- Parents:
- 04b56b282e5394b8e639a964547ee410bc57b9008439117632b2775958b3610334ab1a449222539b
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
README
r04b56b re4a292d 1 Rules for inlude files: 2 - include files from the current subdir via #include "abc.h" 3 - include header from other subdirs vai #include <def.h> 4 ( do NOT use a specific path - this may change!) 5 - include privtae header files via path: #include "../other_dir/ppp.h" 6 - should be avoided! 1 Singular is a computer algebra system for polynomial computations, with 2 special emphasis on commutative and non-commutative algebra, algebraic 3 geometry, and singularity theory. It is free and open-source under the 4 GNU General Public Licence. 7 5 8 Classes of files 9 - public header: 10 - should be installed at a central place ($includedir) 11 - should itself only include other public headers 12 - private header: 13 - will not be installed at other places 14 - will (usually) only be included from that subdir 6 Installation instructions: 7 https://github.com/Singular/Sources/wiki/Step-by-Step-Installation-Instructions-for-Singular 15 8 9 Homepage: 10 http://www.singular.uni-kl.de/ 11 12 Source code: 13 https://github.com/Singular/Sources 14 15 User Manual: 16 http://www.singular.uni-kl.de/Manual/4-0-0/ -
gfanlib/Makefile.am
r843911 re4a292d 5 5 endif 6 6 7 #libgfandir = $(libdir)7 libgfandir = $(libdir) 8 8 9 9 AM_CPPFLAGS = -I${top_srcdir} -I${top_builddir} -DGMPRATIONAL -DHAVE_CONFIG_H -
resources/Makefile.am
r843911 re4a292d 9 9 libresources_LTLIBRARIES = libresources.la 10 10 # ${LIB_G} 11 #libresourcesdir = $(libdir)/ 11 libresourcesdir = $(libdir) 12 12 13 13 #CXXTEMPLFLAGS =-ftrapv
Note: See TracChangeset
for help on using the changeset viewer.