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