Added makefile

Changed defines to support linux
Fixed types
This commit is contained in:
Gabriel Tofvesson 2018-02-27 21:40:39 +01:00
parent 521cbe335f
commit a068c34862

18
makefile Normal file
View File

@ -0,0 +1,18 @@
start:
$(info No recipe specified!)
xmath:
mkdir -p build/include
mkdir -p build/lib
mkdir -p XMath/intermediate
g++ -c XMath/BigInteger.cpp -o XMath/intermediate/BigInteger.o
g++ -c XMath/Matrix.cpp -o XMath/intermediate/Matrix.o
ar rcs build/lib/libxmath.a XMath/intermediate/*
cp XMath/*.h* build/include/
rm -r XMath/intermediate/
clean:
mkdir -p build
rm -r build
mkdir -p XMath/intermediate
rm -r XMath/intermediate