Browse Source

[core] Added 'make ace' target to the Makefile

Enrico Berti 10 years ago
parent
commit
2e0ca5585e
1 changed files with 11 additions and 0 deletions
  1. 11 0
      Makefile

+ 11 - 0
Makefile

@@ -98,6 +98,7 @@ default:
 	@echo '  docs        : Build documentation'
 	@echo '  prod        : Generate a tar file for production distribution'
 	@echo '  locales     : Extract strings and update dictionary of each locale'
+	@echo '  ace         : Builds the Ace Editor tool'
 # END DEV ONLY >>>>
 
 .PHONY: all
@@ -218,6 +219,16 @@ locales:
 	@$(MAKE) -C apps compile-locales
 # END DEV ONLY >>>>
 
+###################################
+# Ace Editor
+###################################
+
+# <<<< DEV ONLY
+.PHONY: ace
+ace:
+	@cd tools/ace-editor && ./hue-ace.sh
+# END DEV ONLY >>>>
+
 
 ###################################
 # Cleanup