File tree 4 files changed +14
-0
lines changed
4 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 8
8
/out
9
9
/.cache
10
10
compile_commands.json
11
+
12
+ /external /*
13
+ ! /external /external.mk
14
+ ! /external /README.md
Original file line number Diff line number Diff line change @@ -439,3 +439,8 @@ endif
439
439
440
440
.PHONY : run-ack
441
441
run-ack : run
442
+
443
+ EXTERNAL_DIR := $(ROOT_DIR ) /external
444
+ ifneq (,$(wildcard $(EXTERNAL_DIR ) /external.mk) )
445
+ include $(EXTERNAL_DIR ) /external.mk
446
+ endif
Original file line number Diff line number Diff line change
1
+ All files called ` rules.mk ` contained within subfolders of this directory will
2
+ be sourced at the end of the main ` Makefile ` . You can use this to add your own
3
+ ` make ` targets. ` rules.mk ` will have access to all of the variables defined in
4
+ the main ` Makefile ` .
Original file line number Diff line number Diff line change
1
+ include $(wildcard $(EXTERNAL_DIR ) /* /rules.mk)
You can’t perform that action at this time.
0 commit comments