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: reducibility
|
|
|
|
clean:
|
|
rm -f reducibility_complexity
|
|
|
|
reducibility: reducibility_complexity.c
|
|
$(CC) $(CFLAGS) reducibility_complexity.c -fopenmp -lm -lgmp -lz -o reducibility_complexity
|
|
|
|
|