summaryrefslogtreecommitdiff
path: root/src/STKLib/.svn
diff options
context:
space:
mode:
authorJoe Zhao <ztuowen@gmail.com>2014-04-14 08:14:45 +0800
committerJoe Zhao <ztuowen@gmail.com>2014-04-14 08:14:45 +0800
commitcccccbf6cca94a3eaf813b4468453160e91c332b (patch)
tree23418cb73a10ae3b0688681a7f0ba9b06424583e /src/STKLib/.svn
downloadtnet-cccccbf6cca94a3eaf813b4468453160e91c332b.tar.gz
tnet-cccccbf6cca94a3eaf813b4468453160e91c332b.tar.bz2
tnet-cccccbf6cca94a3eaf813b4468453160e91c332b.zip
First commit
Diffstat (limited to 'src/STKLib/.svn')
-rw-r--r--src/STKLib/.svn/entries62
-rw-r--r--src/STKLib/.svn/prop-base/Makefile.svn-base5
-rw-r--r--src/STKLib/.svn/text-base/Makefile.svn-base29
3 files changed, 96 insertions, 0 deletions
diff --git a/src/STKLib/.svn/entries b/src/STKLib/.svn/entries
new file mode 100644
index 0000000..1a57f8b
--- /dev/null
+++ b/src/STKLib/.svn/entries
@@ -0,0 +1,62 @@
+10
+
+dir
+117
+svn+ssh://merlin.fit.vutbr.cz/svn/TNet/trunk/src/STKLib
+svn+ssh://merlin.fit.vutbr.cz/svn/TNet
+
+
+
+2011-04-29T12:18:20.752880Z
+49
+iveselyk
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+bda6da93-004a-4ae9-8e07-715c10848801
+
+Makefile
+file
+
+
+
+
+2012-04-02T13:49:13.000000Z
+c21f3a35c7471bc1b42a90014b234702
+2011-04-29T12:18:20.752880Z
+49
+iveselyk
+has-props
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+731
+
diff --git a/src/STKLib/.svn/prop-base/Makefile.svn-base b/src/STKLib/.svn/prop-base/Makefile.svn-base
new file mode 100644
index 0000000..eff4929
--- /dev/null
+++ b/src/STKLib/.svn/prop-base/Makefile.svn-base
@@ -0,0 +1,5 @@
+K 12
+svn:keywords
+V 23
+Date Revision Author Id
+END
diff --git a/src/STKLib/.svn/text-base/Makefile.svn-base b/src/STKLib/.svn/text-base/Makefile.svn-base
new file mode 100644
index 0000000..a95533f
--- /dev/null
+++ b/src/STKLib/.svn/text-base/Makefile.svn-base
@@ -0,0 +1,29 @@
+
+include ../tnet.mk
+
+ifeq ($(BITS64), true)
+ BITS=64
+ CROSS_COMPILE = x86_64-linux-
+else
+ BITS=32
+endif
+
+ifeq ($(DOUBLEPRECISION), true)
+ PRECISION := --enable-double-precision
+endif
+
+STKCONFIG := CFLAGS="-m$(BITS) -g -O2 -fPIC" CXXFLAGS="-m$(BITS) -g -O2 -fPIC" CXX="$(CROSS_COMPILE)g++" CC="$(CROSS_COMPILE)g++" AR="$(CROSS_COMPILE)ar" RANLIB="$(CROSS_COMPILE)ranlib" AS="$(CROSS_COMPILE)as" --with-atlas $(PRECISION)
+
+
+
+all : libSTKLib.a
+
+libSTKLib.a : libSTKLib.a
+ echo $(CC) $(CXX)
+ svn co http://merlin.fit.vutbr.cz/svn/STK/trunk/
+ (cd trunk/; ./reconf; ./configure $(STKCONFIG) ; make clean; make SERest; cd ..;)
+ cp trunk/src/STKLib/libSTKLib.a .
+ cp trunk/src/STKLib/*.{h,tcc} .
+
+clean :
+ rm -f libSTKLib.a *.{h,tcc}