summaryrefslogtreecommitdiff
path: root/Makefile
blob: 47c2fcf8118c1f9dbe38117aec540ab83587cb27 (plain)
1
2
3
4
5
6
7
8
9
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