diff options
author | Joshua Bakita <jbakita@cs.unc.edu> | 2020-10-22 00:24:34 -0400 |
---|---|---|
committer | Joshua Bakita <jbakita@cs.unc.edu> | 2020-10-22 00:25:05 -0400 |
commit | 4f634d4cd3254dfc68b65e63be32708105032101 (patch) | |
tree | 0ebd638a40ae68d788c883e9f38a857b1225463e /all_pairs | |
parent | 3b0aa125061b362b23ecf66afe8319e3a268c874 (diff) |
Fix Makefiles so that a custom CFLAGS doesn't break the build
Diffstat (limited to 'all_pairs')
-rw-r--r-- | all_pairs/Makefile | 4 |
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 @@ | |||
1 | LIBLITMUS ?= /media/speedy/litmus/liblitmus | 1 | LIBLITMUS ?= /media/speedy/litmus/liblitmus |
2 | CC ?= gcc | 2 | CC ?= gcc |
3 | CFLAGS = -pthread -O2 -I.. -DPAIRED | 3 | override CFLAGS += -pthread -O2 -I.. -DPAIRED |
4 | LDFLAGS = -lrt | 4 | LDFLAGS += -lrt |
5 | COMMON = ../extra.h | 5 | COMMON = ../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 |