@ -30,6 +30,7 @@
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <unistd.h>
#include "../../common.h"
@ -1,12 +1,15 @@
.PHONY: clean distribution
OBJECTS=latency
OBJECTS=latency throughput
all: $(OBJECTS)
latency: latency.c ../../../include/ck_rwlock.h
$(CC) $(CFLAGS) -o latency latency.c
throughput: throughput.c ../../../include/ck_rwlock.h
$(CC) $(CFLAGS) -o throughput throughput.c
clean:
rm -rf *.dSYM *~ *.o $(OBJECTS)
@ -1,15 +1,12 @@
OBJECTS=validate throughput
OBJECTS=validate
validate: validate.c ../../../include/ck_rwlock.h
$(CC) $(CFLAGS) -o validate validate.c