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.
ck/regressions/ck_epoch/validate/Makefile

15 lines
294 B

.PHONY: clean distribution
OBJECTS=ck_stack
all: $(OBJECTS)
ck_stack: ck_stack.c ../../../include/ck_stack.h ../../../include/ck_epoch.h
$(CC) $(CFLAGS) -o ck_stack ck_stack.c
clean:
rm -rf *~ *.o $(OBJECTS) *.dSYM
include ../../../build/regressions.build
CFLAGS+=-pthread -D_GNU_SOURCE