You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
CC=gcc
|
|
CFLAGS=-Iinclude -g -O3
|
|
|
|
all: compute_complexity
|
|
|
|
clean:
|
|
rm -f compute_complexity_multiplex
|
|
|
|
compute_complexity: Compute_Complexity_Multiplex.c
|
|
$(CC) $(CFLAGS) Compute_Complexity_Multiplex.c -lm -lgmp -lz -fopenmp -o compute_complexity_multiplex
|
|
|
|
|