From a382a3e6b1129bf26f0196b0deb2dc40b30f28a1 Mon Sep 17 00:00:00 2001 From: Jason Woofenden Date: Fri, 6 Nov 2015 18:46:41 -0500 Subject: [PATCH] rename main.js -> js.js --- .git-ftp-include | 2 +- .gitignore | 2 +- Makefile | 8 ++++---- index.html | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.git-ftp-include b/.git-ftp-include index 703fee4..dd72d8d 100644 --- a/.git-ftp-include +++ b/.git-ftp-include @@ -1,2 +1,2 @@ -main.js:main.coffee +js.js:main.coffee css.css:style.styl diff --git a/.gitignore b/.gitignore index 96552f5..200159c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ -/main.js +/js.js /css.css diff --git a/Makefile b/Makefile index 0ae83b6..74ddf85 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -objects= main.js css.css +objects= js.js css.css all: $(objects) @@ -6,7 +6,7 @@ clean: rm -f $(objects) css.css: style.styl - stylus -c -p $< > $@ + stylus -c -p $< > $@ || (rm -f $@; false) -%.js: %.coffee - coffee -c $< +js.js: main.coffee + coffee -c -p $< > $@ || (rm -f $@; false) diff --git a/index.html b/index.html index 9f0f792..4c2b179 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ Crayon Mockup (working title) - + -- 1.7.10.4