blob: 6bfc696ddb9b996e744051097e01214d932342ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
.PHONY: check clean distribution
OBJECTS=ck_fifo_spsc ck_fifo_mpmc ck_fifo_spsc_iterator ck_fifo_mpmc_iterator
all: $(OBJECTS)
check: all
./ck_fifo_spsc $(CORES) 1 64000
./ck_fifo_mpmc $(CORES) 1 16000
./ck_fifo_spsc_iterator
./ck_fifo_mpmc_iterator
ck_fifo_spsc: ck_fifo_spsc.c ../../../include/ck_fifo.h
$(CC) $(CFLAGS) -o ck_fifo_spsc ck_fifo_spsc.c
ck_fifo_mpmc: ck_fifo_mpmc.c ../../../include/ck_fifo.h
$(CC) $(CFLAGS) -o ck_fifo_mpmc ck_fifo_mpmc.c
ck_fifo_spsc_iterator: ck_fifo_spsc_iterator.c ../../../include/ck_fifo.h
$(CC) $(CFLAGS) -o ck_fifo_spsc_iterator ck_fifo_spsc_iterator.c
ck_fifo_mpmc_iterator: ck_fifo_mpmc_iterator.c ../../../include/ck_fifo.h
$(CC) $(CFLAGS) -o ck_fifo_mpmc_iterator ck_fifo_mpmc_iterator.c
clean:
rm -rf *.dSYM *.exe *~ *.o $(OBJECTS)
include ../../../build/regressions.build
CFLAGS+=$(PTHREAD_CFLAGS) -D_GNU_SOURCE
|