summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--all_pairs/Makefile4
-rw-r--r--baseline/Makefile2
-rwxr-xr-xdis/Makefile2
3 files changed, 4 insertions, 4 deletions
diff --git a/all_pairs/Makefile b/all_pairs/Makefile
index 0042372..f0b284e 100644
--- a/all_pairs/Makefile
+++ b/all_pairs/Makefile
@@ -1,7 +1,7 @@
1LIBLITMUS ?= /media/speedy/litmus/liblitmus 1LIBLITMUS ?= /media/speedy/litmus/liblitmus
2CC ?= gcc 2CC ?= gcc
3CFLAGS = -pthread -O2 -I.. -DPAIRED 3override CFLAGS += -pthread -O2 -I.. -DPAIRED
4LDFLAGS = -lrt 4LDFLAGS += -lrt
5COMMON = ../extra.h 5COMMON = ../extra.h
6 6
7# Handle cases where we're also profiling with the MMDC on the i.MX6Q 7# Handle cases where we're also profiling with the MMDC on the i.MX6Q
diff --git a/baseline/Makefile b/baseline/Makefile
index 40b57f4..d6ab976 100644
--- a/baseline/Makefile
+++ b/baseline/Makefile
@@ -1,6 +1,6 @@
1LIBLITMUS ?= /media/speedy/litmus/liblitmus 1LIBLITMUS ?= /media/speedy/litmus/liblitmus
2CC ?= gcc 2CC ?= gcc
3CFLAGS = -pthread -O2 -I.. 3override CFLAGS = -pthread -O2 -I..
4LDFLAGS = -lrt 4LDFLAGS = -lrt
5COMMON = ../extra.h 5COMMON = ../extra.h
6 6
diff --git a/dis/Makefile b/dis/Makefile
index df93116..88fa7c2 100755
--- a/dis/Makefile
+++ b/dis/Makefile
@@ -4,7 +4,7 @@
4# that a good Makefile should follow. Sorry - at least I have one.) 4# that a good Makefile should follow. Sorry - at least I have one.)
5LIBLITMUS ?= /media/speedy/litmus/liblitmus 5LIBLITMUS ?= /media/speedy/litmus/liblitmus
6CC ?= gcc 6CC ?= gcc
7CFLAGS += -pthread -O2 -I.. 7override CFLAGS += -pthread -O2 -I..
8LDFLAGS = -lrt -lm 8LDFLAGS = -lrt -lm
9COMMON = ../extra.h 9COMMON = ../extra.h
10 10