aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWill Deacon <will.deacon@arm.com>2017-10-26 12:53:35 +0100
committerWill Deacon <will.deacon@arm.com>2017-10-26 12:53:35 +0100
commit838a198711a862d36a4093f8e05c9c9814f9606d (patch)
treec72e520968b8a34942e96db314d5237f40e8dc9b
parent79668cf74fed96434f860c585fd839043a3b0bc6 (diff)
downloadqrwlock-rmem-838a198711a862d36a4093f8e05c9c9814f9606d.tar.gz
Add tags target and update phony target
Signed-off-by: Will Deacon <will.deacon@arm.com>
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 3910d5c..b4d5f76 100644
--- a/Makefile
+++ b/Makefile
@@ -9,6 +9,9 @@ $(TARGET) : $(OBJS) $(HDRS)
all: $(TARGET)
clean:
- rm -f $(TARGET) $(OBJS)
+ rm -f $(TARGET) $(OBJS) tags
-.PHONY: clean
+tags:
+ ctags -R .
+
+.PHONY: clean all tags