Changeset 502f5f6 in git
- Timestamp:
- May 23, 2011, 4:45:53 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a657104b677b4c461d018cbf3204d72d34ad66a9')
- Children:
- c44985a8f5ca67af1ce38a5a3fce467f6da4cc00
- Parents:
- cfb5000f6e3cef21c58dd8a3885a3762c287382b
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-05-23 16:45:53+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:36:47+01:00
- Location:
- factory
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/Makefile.am
rcfb500 r502f5f6 2 2 3 3 INCLUDES = -I${top_srcdir} -I${top_srcdir}/.. -I${top_builddir} -I${top_builddir}/.. -I${srcdir} ${GMP_CFLAGS} ${NTL_CFLAGS} 4 4 5 5 6 lib_LIBRARIES = libfactory.a libfactory_g.a … … 191 192 ftmpl_matrix.h 192 193 194 # TODO: 195 # gengftables needs libfactory.a and factory.h AND is needed for generating gftable... 196 # somehow the current deps. seem to be broken... 197 # moreover factory.h needs a lot more generated headers, which wouldn't be installed yet 198 193 199 noinst_PROGRAMS = gengftables 200 gengftables_SOURCES = gengftables-conway.cc 201 202 #### TODO: the following would not work...???! 203 ####gengftables_includedir=-I${top_srcdir} -I${top_srcdir}/.. -I${top_builddir} -I${top_builddir}/.. -I${srcdir} ${GMP_CFLAGS} ${NTL_CFLAGS} 204 194 205 gengftables_LDADD = -L${builddir} -lfactory $(GMP_LIBS) $(NTL_LIBS) 195 206 196 gengftables _SOURCES = gengftables-conway.cc207 gengftables: factory.h factoryconf.h 197 208 198 209 gftablesdir=$(datadir)/gftables … … 234 245 235 246 .template.h: 236 247 ${srcdir}/bin/makeheader $< $@ 237 248 238 249 BUILT_SOURCES = factory.h factoryconf.h -
factory/gengftables-conway.cc
rcfb500 r502f5f6 11 11 //}}} 12 12 13 #include <factory.h>13 #include "factory.h" 14 14 15 15 #ifdef HAVE_IOSTREAM … … 29 29 30 30 31 #include <cf_assert.h>32 #include <gf_tabutil.h>31 #include "cf_assert.h" 32 #include "gf_tabutil.h" 33 33 34 34 using namespace std; -
factory/gengftables.cc
rcfb500 r502f5f6 21 21 #endif 22 22 23 #include <factory.h>24 25 #include <cf_assert.h>26 #include <gf_tabutil.h>23 #include "factory.h" 24 25 #include "cf_assert.h" 26 #include "gf_tabutil.h" 27 27 28 28 //{{{ constants
Note: See TracChangeset
for help on using the changeset viewer.