Revision 785
Added by Aaron Marcuse-Kubitza about 13 years ago
Makefile | ||
---|---|---|
1 |
##### Vars/functions |
|
2 |
|
|
1 | 3 |
# Make |
2 | 4 |
pathParts = $(shell path="$(1)"; echo "$${path%%/*}" "$${path\#*/}") |
3 | 5 |
topDir = $(firstword $(pathParts)) |
... | ... | |
6 | 8 |
--makefile=../input.Makefile |
7 | 9 |
# input.Makefile path is relative to subdir |
8 | 10 |
|
9 |
##### |
|
11 |
##### General targets
|
|
10 | 12 |
|
11 | 13 |
all: |
12 | 14 |
|
... | ... | |
30 | 32 |
|
31 | 33 |
%: $(addsuffix %,$(subdirs)) _always ; |
32 | 34 |
|
33 |
##### |
|
35 |
##### SVN
|
|
34 | 36 |
|
35 | 37 |
%-add: _always |
36 | 38 |
svn mkdir $* |
Also available in: Unified diff
Makefiles: Added documentation labels to each section