Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
michael@0 | 1 | MKDIR ?= mkdir |
michael@0 | 2 | |
michael@0 | 3 | all: |
michael@0 | 4 | $(MKDIR) newdir |
michael@0 | 5 | test -d newdir |
michael@0 | 6 | # subdir, parent exists |
michael@0 | 7 | $(MKDIR) newdir/subdir |
michael@0 | 8 | test -d newdir/subdir |
michael@0 | 9 | # -p, existing dir |
michael@0 | 10 | $(MKDIR) -p newdir |
michael@0 | 11 | # -p, existing subdir |
michael@0 | 12 | $(MKDIR) -p newdir/subdir |
michael@0 | 13 | # multiple subdirs, existing parent |
michael@0 | 14 | $(MKDIR) newdir/subdir1 newdir/subdir2 |
michael@0 | 15 | test -d newdir/subdir1 -a -d newdir/subdir2 |
michael@0 | 16 | rm -r newdir |
michael@0 | 17 | # -p, subdir, no existing parent |
michael@0 | 18 | $(MKDIR) -p newdir/subdir |
michael@0 | 19 | test -d newdir/subdir |
michael@0 | 20 | rm -r newdir |
michael@0 | 21 | # -p, multiple subdirs, no existing parent |
michael@0 | 22 | $(MKDIR) -p newdir/subdir1 newdir/subdir2 |
michael@0 | 23 | test -d newdir/subdir1 -a -d newdir/subdir2 |
michael@0 | 24 | # -p, multiple existing subdirs |
michael@0 | 25 | $(MKDIR) -p newdir/subdir1 newdir/subdir2 |
michael@0 | 26 | rm -r newdir |
michael@0 | 27 | @echo TEST-PASS |