Add header files to lrslib install

This commit is contained in:
Erik Schnetter 2016-06-19 13:47:02 -04:00
parent fa471a4ed1
commit b4da4425ff

View file

@ -1,6 +1,6 @@
--- old/Makefile.spack --- old/Makefile.spack
+++ new/Makefile.spack +++ new/Makefile.spack
@@ -0,0 +1,54 @@ @@ -0,0 +1,57 @@
+# Set PREFIX to the install location for both building and installing +# Set PREFIX to the install location for both building and installing
+# Set BOOST_PREFIX to the location where BOOST is installed +# Set BOOST_PREFIX to the location where BOOST is installed
+# Set GMP_PREFIX to the location where GMP is installed +# Set GMP_PREFIX to the location where GMP is installed
@ -42,6 +42,7 @@
+ +
+install: +install:
+ mkdir -p $(PREFIX)/bin + mkdir -p $(PREFIX)/bin
+ mkdir -p $(PREFIX)/include
+ mkdir -p $(PREFIX)/lib + mkdir -p $(PREFIX)/lib
+ libtool --mode=install cp 2nash $(PREFIX)/bin/2nash + libtool --mode=install cp 2nash $(PREFIX)/bin/2nash
+ libtool --mode=install cp fourier $(PREFIX)/bin/fourier + libtool --mode=install cp fourier $(PREFIX)/bin/fourier
@ -52,6 +53,8 @@
+ libtool --mode=install cp redund1 $(PREFIX)/bin/redund1 + libtool --mode=install cp redund1 $(PREFIX)/bin/redund1
+ libtool --mode=install cp setnash $(PREFIX)/bin/setnash + libtool --mode=install cp setnash $(PREFIX)/bin/setnash
+ libtool --mode=install cp setnash2 $(PREFIX)/bin/setnash2 + libtool --mode=install cp setnash2 $(PREFIX)/bin/setnash2
+ libtool --mode=install cp lrsgmp.h $(PREFIX)/include/lrsgmp.h
+ libtool --mode=install cp lrslib.h $(PREFIX)/include/lrslib.h
+ libtool --mode=install cp liblrsgmp.la $(PREFIX)/lib/liblrsgmp.la + libtool --mode=install cp liblrsgmp.la $(PREFIX)/lib/liblrsgmp.la
+ +
+.PHONY: all install +.PHONY: all install