Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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 |