summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2014-09-03 14:07:10 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2014-09-03 14:59:18 -0700
commita6346051765fc3c7d476815fd20e150fb7ce6853 (patch)
tree3b08d81d2c8e4735ab049015fdd40501449986ed
parent3eb05efde259d10714d8d0539a4fc6dba77a58d3 (diff)
downloadqtlocation-mapboxgl-a6346051765fc3c7d476815fd20e150fb7ce6853.tar.gz
Kill config.mk (fixes #456)
-rw-r--r--.gitignore1
-rw-r--r--Makefile4
-rwxr-xr-xconfigure9
3 files changed, 0 insertions, 14 deletions
diff --git a/.gitignore b/.gitignore
index 740653e6a2..23dbb0f8f7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -8,7 +8,6 @@
/macosx/build
/ios/build
/config.gypi
-/config.mk
/config/constants_local.cpp
/build
/bin/node_modules
diff --git a/Makefile b/Makefile
index c8d11b407e..d5d7136130 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,3 @@
--include config.mk
-
BUILDTYPE ?= Release
PYTHON ?= python
V ?= 1
@@ -97,11 +95,9 @@ lproj: config.gypi linux/mapboxgl-app.gyp clear_xcode_cache node
clean: clear_xcode_cache
-find ./deps/gyp -name "*.pyc" -exec rm {} \;
-rm -rf ./build/
- -rm -rf ./config.mk
-rm -rf ./config.gypi
distclean: clean
- -rm -rf ./config.mk
-rm -rf ./config.gypi
-rm -rf ./mapnik-packaging/osx/out/
diff --git a/configure b/configure
index a38c587d69..e8f880b543 100755
--- a/configure
+++ b/configure
@@ -133,12 +133,3 @@ if __name__ == '__main__':
write('config.gypi', "# Do not edit. Generated by the configure script.\n" +
pprint.pformat(output, indent=2) + "\n")
-
- config = {
- 'BUILDTYPE': 'Debug' if options.debug else 'Release',
- 'PYTHON': sys.executable,
- }
- config = '\n'.join(map('='.join, config.iteritems())) + '\n'
-
- write('config.mk',
- '# Do not edit. Generated by the configure script.\n' + config)