diff --git a/README.txt b/README.txt
index ec6a0a7..da9823c 100644
--- a/README.txt
+++ b/README.txt
@@ -32,7 +32,7 @@ to be enabled without the need to deploy any code.
 
 When new sites are created in the platform, provision_civicrm will detect that CiviCRM is available and will automatically install it.
 
-For convenience, a "drush make" makefile is available in drush/civicrm.make which can be used to generate a platform for you.
+For convenience, a "drush make" makefile is available in drush/civicrm.make.yml which can be used to generate a platform for you.
 
 Debugging
 =========
diff --git a/drush/civicrm.make b/drush/civicrm.make
deleted file mode 100644
index a8c0ac5..0000000
--- a/drush/civicrm.make
+++ /dev/null
@@ -1,23 +0,0 @@
-api = 2
-
-core = 7.x
-projects[] = "drupal"
-
-projects[webform_civicrm][subdir] = contrib
-projects[views][subdir] = contrib
-projects[ctools][subdir] = contrib
-
-# Other useful modules:
-# projects[admin_menu][subdir] = contrib
-# projects[devel][subdir] = contrib
-
-projects[civicrm][type] = "module"
-projects[civicrm][directory_name] = "civicrm"
-projects[civicrm][download][type] = "get"
-projects[civicrm][download][url] = "https://download.civicrm.org/civicrm-4.7.6-drupal.tar.gz"
-
-libraries[civicrm_l10n][destination] = "modules"
-libraries[civicrm_l10n][directory_name] = "civicrm"
-libraries[civicrm_l10n][download][type] = "get"
-libraries[civicrm_l10n][download][url] = "https://download.civicrm.org/civicrm-4.7.6-l10n.tar.gz"
-libraries[civicrm_l10n][overwrite] = TRUE
diff --git a/drush/civicrm.make.yml b/drush/civicrm.make.yml
new file mode 100644
index 0000000..52830cf
--- /dev/null
+++ b/drush/civicrm.make.yml
@@ -0,0 +1,28 @@
+core: 7.x
+api: 2
+defaults:
+  projects:
+    subdir: contrib
+projects:
+  drupal:
+    type: core
+  webform_civicrm:
+    version: ~
+  views:
+    version: ~
+  ctools:
+    version: ~
+  civicrm:
+    download:
+      type: get
+      url: 'https://download.civicrm.org/civicrm-4.7.7-drupal.tar.gz'
+libraries:
+  civicrm_l10n_core:
+    destination: modules/contrib/civicrm
+    directory_name: l10n
+    download:
+      type: file
+      url: 'https://download.civicrm.org/civicrm-l10n-core/archives/civicrm-l10n-daily.tar.gz'
+    overwrite: true
+    type: library
+
