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.
19 lines
467 B
19 lines
467 B
.PHONY: clean
|
|
|
|
all: ck_pr_cas_64 ck_pr_fas_64 ck_pr_cas_64_2
|
|
|
|
ck_pr_cas_64_2: ck_pr_cas_64_2.c
|
|
$(CC) $(CFLAGS) -o ck_pr_cas_64_2 ck_pr_cas_64_2.c -lm
|
|
|
|
ck_pr_cas_64: ck_pr_cas_64.c
|
|
$(CC) $(CFLAGS) -o ck_pr_cas_64 ck_pr_cas_64.c -lm
|
|
|
|
ck_pr_fas_64: ck_pr_fas_64.c
|
|
$(CC) $(CFLAGS) -o ck_pr_fas_64 ck_pr_fas_64.c -lm
|
|
|
|
clean:
|
|
rm -rf ck_pr_cas_64 ck_pr_fas_64 ck_pr_cas_64_2 *.dSYM *.exe
|
|
|
|
include ../../../build/regressions.build
|
|
CFLAGS+=$(PTHREAD_CFLAGS) -D_GNU_SOURCE
|