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
320 B
19 lines
320 B
.PHONY: clean distribution
|
|
|
|
OBJECTS=ck_sequence
|
|
|
|
all: $(OBJECTS)
|
|
|
|
ck_sequence: ck_sequence.c ../../../include/ck_sequence.h
|
|
$(CC) $(CFLAGS) -o ck_sequence ck_sequence.c
|
|
|
|
check: all
|
|
./ck_sequence $(CORES) 1
|
|
|
|
clean:
|
|
rm -rf *~ *.o $(OBJECTS) *.dSYM *.exe
|
|
|
|
include ../../../build/regressions.build
|
|
CFLAGS+=-D_GNU_SOURCE
|
|
|