aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-06-07 15:46:40 +0000
committerGravatar epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-06-07 15:46:40 +0000
commitb7fd3ee27ee1e17a78d912e87da35630b311abe2 (patch)
treed9226a6568d5130c368a3c099db7383ee3f67d0f /Makefile
parent1e8e056afc6a7fc533f696e93771bde861a53db7 (diff)
Temporarily fall back to the old makefile; the new one was killing buildbot.
git-svn-id: http://skia.googlecode.com/svn/trunk@1527 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile42
1 files changed, 2 insertions, 40 deletions
diff --git a/Makefile b/Makefile
index b1d857998c..6a25b56a1c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,40 +1,2 @@
-# Makefile that redirects almost all make directives to the gyp-generated Makefile.
-#
-# Note that this method of building works only on Unix (not Mac or Windows).
-# See http://code.google.com/p/skia/wiki/DocRoot for complete documentation.
-
-# Directory within which we want all generated files to be written.
-outdir := out
-
-# GYP-generated Makefiles only work on Linux/Unix (not Mac or Windows).
-uname := $(shell uname)
-ifneq (,$(findstring Darwin, $(uname)))
- $(error Cannot build using Make on Mac. See http://code.google.com/p/skia/wiki/GettingStartedOnMac)
-endif
-ifneq (,$(findstring CYGWIN, $(uname)))
- $(error Cannot build using Make on Windows. See http://code.google.com/p/skia/wiki/GettingStartedOnWindows)
-endif
-
-# Default target. This must be listed before all other targets.
-.PHONY: default
-default: all
-
-.PHONY: clean
-clean:
- rm -rf $(outdir)
-
-# Any target OTHER than clean...
-# Ask gyp to create the real Makefile, and then pass control to it.
-%:
- ./gyp_skia -f make
- make -C $(outdir) $@
-
-# Unfortunately, this is a bit ugly, but necessary.
-# If there are any files/directories within the same directory as this Makefile
-# which share the same name as a target ("tests", for example), then make
-# will refuse to rebuild those targets because the file already exists.
-local_filenames := $(shell ls)
-.PHONY: $(local_filenames)
-$(local_filenames)::
- ./gyp_skia -f make
- make -C $(outdir) $@
+# Temporarily fall back to the old makefile; the new one was killing buildbot.
+include Makefile.old