From a068c34862b8182ad214aa8b3ed8ccd969b42f38 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Tue, 27 Feb 2018 21:40:39 +0100 Subject: [PATCH] Added makefile Changed defines to support linux Fixed types --- makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 makefile diff --git a/makefile b/makefile new file mode 100644 index 0000000..a6e0a85 --- /dev/null +++ b/makefile @@ -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