From 4c1d821e4caddaac0232ff62b9aec8f44dab2606 Mon Sep 17 00:00:00 2001 From: Calvin Morrison Date: Wed, 10 Jul 2013 11:20:08 -0400 Subject: initial commit --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..47c2fcf --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +VERSION=\"v0.0.1\" +CC = gcc +NNLS_CFLAGS = -O3 -s -mtune=native -Wall -lm -lz -DVERSION=$(VERSION) + +all: nnls_solver + +nnls_solver: + $(CC) nnls_solver.c nnls.c -o nnls_solver $(NNLS_CFLAGS) +clean: + rm -vf nnls_solver -- cgit v1.2.3