aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWill Deacon <will.deacon@arm.com>2017-10-26 11:55:03 +0100
committerWill Deacon <will.deacon@arm.com>2017-10-26 11:55:03 +0100
commit79668cf74fed96434f860c585fd839043a3b0bc6 (patch)
treefe595910c724931ce413b5fe002140edc47e33ca
parentbdc3a45535889da13e5a8729eb3d37901b561531 (diff)
downloadqrwlock-rmem-79668cf74fed96434f860c585fd839043a3b0bc6.tar.gz
Add qrwlock.h to HDRS in Makefile
Signed-off-by: Will Deacon <will.deacon@arm.com>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index aeaab39..3910d5c 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ CC=aarch64-linux-gnu-gcc
CFLAGS=-Wall -O2 -fno-strict-aliasing -g -ffreestanding
LDFLAGS=-static -nostdlib
TARGET=qrwlock
-HDRS=kernel.h compiler.h rmem.h
+HDRS=kernel.h compiler.h rmem.h qrwlock.h
OBJS=main.o qrwlock.o
$(TARGET) : $(OBJS) $(HDRS)