]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | # creates subdirectories for object-files in case they are needed... |
2 | ||
3 | subdirs:: | |
4 | @if test "x$(SRC_DIR)" != x ; then \ | |
5 | echo -n "Creating necessary subdirs: "; \ | |
6 | for each in $(SRC_DIR) xxx; do \ | |
7 | if test "x$$each" != xxxx; then \ | |
8 | echo -n "$$each "; \ | |
9 | if test ! -d $$each ; then \ | |
10 | mkdir $$each ; \ | |
11 | fi; \ | |
12 | fi; \ | |
13 | done; \ | |
14 | echo "";\ | |
15 | fi |