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.
15 lines
302 B
15 lines
302 B
13 years ago
|
.PHONY: clean distribution
|
||
|
|
||
|
OBJECTS=order
|
||
|
|
||
|
all: $(OBJECTS)
|
||
|
|
||
|
order: order.c ../../../include/ck_bag.h ../../../src/ck_bag.c
|
||
|
$(CC) $(CFLAGS) -o order order.c ../../../src/ck_bag.c
|
||
|
|
||
|
clean:
|
||
|
rm -rf *.dSYM *~ *.o $(OBJECTS)
|
||
|
|
||
|
include ../../../build/regressions.build
|
||
|
CFLAGS+=$(PTHREAD_CFLAGS) -D_GNU_SOURCE
|