summaryrefslogtreecommitdiff
path: root/benchmarks/xdd/files/freebsd.makefile
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks/xdd/files/freebsd.makefile')
-rw-r--r--benchmarks/xdd/files/freebsd.makefile69
1 files changed, 0 insertions, 69 deletions
diff --git a/benchmarks/xdd/files/freebsd.makefile b/benchmarks/xdd/files/freebsd.makefile
deleted file mode 100644
index 5862e2b36860..000000000000
--- a/benchmarks/xdd/files/freebsd.makefile
+++ /dev/null
@@ -1,69 +0,0 @@
-# XDD Makefile for FreeBSD
-SHELL = /bin/sh
-CC ?= gcc
-CFLAGS += -DFreeBSD -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -g
-PROJECT = xdd
-OBJECTS = xdd.o access_pattern.o barrier.o global_time.o initialization.o parse.o pclk.o read_after_write.o results.o ticker.o time_stamp.o verify.o
-HEADERS = xdd.h pclk.h ticker.h misc.h
-TSOBJECTS = timeserver.o pclk.o ticker.o
-GTOBJECTS = gettime.o global_time.o pclk.o ticker.o
-
-all: xdd timeserver gettime
-
-xdd: $(OBJECTS)
- ${CC} -o xdd $(CFLAGS) $(OBJECTS) -lpthread -v
- mv -f xdd bin/xdd.freebsd
-
-timeserver: $(TSOBJECTS)
- ${CC} -o timeserver $(CFLAGS) $(TSOBJECTS) -lpthread -v
- mv -f timeserver bin/timeserver.freebsd
-
-gettime: $(GTOBJECTS)
- ${CC} -o gettime $(CFLAGS) $(GTOBJECTS) -lpthread -v
- mv -f gettime bin/gettime.freebsd
-
-access_pattern.o: access_pattern.c
- ${CC} $(CFLAGS) -c access_pattern.c
-
-barrier.o: barrier.c
- ${CC} $(CFLAGS) -c barrier.c
-
-gettime.o: gettime.c
- ${CC} $(CFLAGS) -c gettime.c
-
-global_time.o: global_time.c
- ${CC} $(CFLAGS) -c global_time.c
-
-initialization.o: initialization.c
- ${CC} $(CFLAGS) -c initialization.c
-
-parse.o: parse.c
- ${CC} $(CFLAGS) -c parse.c
-
-pclk.o: pclk.c
- ${CC} $(CFLAGS) -c pclk.c
-
-read_after_write.o: read_after_write.c
- ${CC} $(CFLAGS) -c read_after_write.c
-
-results.o: results.c
- ${CC} $(CFLAGS) -c results.c
-
-ticker.o: ticker.c
- ${CC} $(CFLAGS) -c ticker.c
-
-time_stamp.o: time_stamp.c
- ${CC} $(CFLAGS) -c time_stamp.c
-
-timeserver.o: timeserver.c
- ${CC} $(CFLAGS) -c timeserver.c
-
-xdd.o: xdd.c
- ${CC} $(CFLAGS) -c xdd.c
-
-dist: clean
- tar cf ../dist.tar .
-clean:
- -rm -f xdd timeserver gettime a.out $(OBJECTS) $(TSOBJECTS) $(GTOBJECTS)
-
-