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.
16 lines
292 B
16 lines
292 B
14 years ago
|
|
||
|
.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
|
||
|
|
||
|
clean:
|
||
|
rm -rf *~ *.o $(OBJECTS) *.dSYM
|
||
|
|
||
|
include ../../../build/regressions.build
|
||
|
CFLAGS+=-lpthread -D_GNU_SOURCE -ggdb
|