aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-07-14 17:31:33 +0000
committerGravatar epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-07-14 17:31:33 +0000
commit2d75cc0c163d60276f5f9e39299a4225fd0e2f8d (patch)
treed4373ef6909827dab7596b44dddb61ba7233938e /Makefile
parentf4fab6c7a51cdced91d9f85bbee6f4d6a84694dd (diff)
make gyp_skia runnable from any directory
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index e4e9a10505..6e4e538f21 100644
--- a/Makefile
+++ b/Makefile
@@ -52,7 +52,7 @@ clean:
#
# For the Mac, we create a convenience symlink to the generated binary.
%:
- ./gyp_skia
+ $(CWD)/gyp_skia
ifneq (,$(findstring Linux, $(uname)))
$(MAKE) -C out $@ BUILDTYPE=$(BUILDTYPE)
endif
@@ -70,7 +70,7 @@ endif
local_filenames := $(shell ls)
.PHONY: $(local_filenames)
$(local_filenames)::
- ./gyp_skia
+ $(CWD)/gyp_skia
ifneq (,$(findstring Linux, $(uname)))
$(MAKE) -C out $@ BUILDTYPE=$(BUILDTYPE)
endif