summaryrefslogtreecommitdiffstats
path: root/all_pairs
diff options
context:
space:
mode:
authorJoshua Bakita <jbakita@cs.unc.edu>2020-10-22 00:24:34 -0400
committerJoshua Bakita <jbakita@cs.unc.edu>2020-10-22 00:25:05 -0400
commit4f634d4cd3254dfc68b65e63be32708105032101 (patch)
tree0ebd638a40ae68d788c883e9f38a857b1225463e /all_pairs
parent3b0aa125061b362b23ecf66afe8319e3a268c874 (diff)
Fix Makefiles so that a custom CFLAGS doesn't break the build
Diffstat (limited to 'all_pairs')
-rw-r--r--all_pairs/Makefile4
1 files changed, 2 insertions, 2 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