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
448 B
19 lines
448 B
14 years ago
|
.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
|
||
|
|
||
|
ck_pr_cas_64: ck_pr_cas_64.c
|
||
|
$(CC) $(CFLAGS) -o ck_pr_cas_64 ck_pr_cas_64.c
|
||
|
|
||
|
ck_pr_fas_64: ck_pr_fas_64.c
|
||
|
$(CC) $(CFLAGS) -o ck_pr_fas_64 ck_pr_fas_64.c
|
||
|
|
||
|
clean:
|
||
|
rm -rf ck_pr_cas_64 ck_pr_fas_64 ck_pr_cas_64_2 *.dSYM
|
||
|
|
||
|
include ../../../build/regressions.build
|
||
|
CFLAGS+=-lpthread -D_GNU_SOURCE -lm
|