|
Revision 89, 106 bytes
(checked in by verm, 6 years ago)
|
Fixed a small bug when calculating SRC_DIR from the toplevel directory, the RE
used to calculate SRC_DIR looks for the *last* occurance of /src/ in the path
all previous entries are ignored, however if it's from the toplevel directory
and there are *other* occurances it will use that, instead. This change sets
SRC_DIR to .CURDIR if make is being executed from the toplevel directory.
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
TenDRA=Id
|
| Line | |
|---|
| 1 |
# $TenDRA$ |
|---|
| 2 |
# |
|---|
| 3 |
# User targets: |
|---|
| 4 |
# |
|---|
| 5 |
|
|---|
| 6 |
SRC_DIR= ${.CURDIR} |
|---|
| 7 |
|
|---|
| 8 |
SUBDIR= src |
|---|
| 9 |
|
|---|
| 10 |
.include "${.CURDIR}/mk/base/tendra.mk" |
|---|