regressions: Additional header files, rename to throughput.

ck_pring
Samy Al Bahra 14 years ago
parent d2f5322e99
commit 52e5152225

@ -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)

@ -30,6 +30,7 @@
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <unistd.h>
#include "../../common.h"

@ -1,15 +1,12 @@
.PHONY: clean distribution
OBJECTS=validate throughput
OBJECTS=validate
all: $(OBJECTS)
validate: validate.c ../../../include/ck_rwlock.h
$(CC) $(CFLAGS) -o validate validate.c
throughput: throughput.c ../../../include/ck_rwlock.h
$(CC) $(CFLAGS) -o throughput throughput.c
clean:
rm -rf *.dSYM *~ *.o $(OBJECTS)

Loading…
Cancel
Save