Created
May 27, 2013 20:48
-
-
Save dduan/5659003 to your computer and use it in GitHub Desktop.
Read explanation here: http://danmarner.com/2013/05/27/Sencha-Touch-Workflow-with-GNU-Make-and-Tmux.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SASS_PATH = resources/sass | |
COFFEE_PATH = app | |
all: sass coffee | |
develop: watch server | |
server: | |
python3 -m http.server | |
watch: | |
tmux split-window -v "make watchsass" | |
tmux split-window -h "make watchcoffee" | |
sass: | |
compass compile ${SASS_PATH} | |
coffee: | |
coffee -o ${COFFEE_PATH} -c src | |
watchcoffee: | |
coffee --watch -o ${COFFEE_PATH} -c src | |
watchsass: | |
compass watch ${SASS_PATH} | |
package: | |
sencha app build package |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment