From 54fccebd5e65a13823ade72e1dd4073d31ebfc61 Mon Sep 17 00:00:00 2001 From: John Bender Date: Wed, 19 Oct 2011 10:41:08 -0700 Subject: [PATCH] move .structure before version in css build put filenames :sparkles: --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index fae74f95..83a42e90 100644 --- a/Makefile +++ b/Makefile @@ -13,6 +13,7 @@ JQUERY = $(shell grep Library js/jquery.js | sed s'/ \* jQuery JavaScript Librar # The directory to create the zipped files in and also serves as the filenames DIR = jquery.mobile-${VER} +STRUCTUREFILE = jquery.mobile.structure-${VER} nightly: DIR = jquery.mobile # The output folder for the finished files @@ -33,8 +34,8 @@ JS = ${DIR}.js MIN = ${DIR}.min.js CSS = ${DIR}.css CSSMIN = ${DIR}.min.css -CSSSTRUCTURE = ${DIR}.structure.css -CSSSTRUCTUREMIN = ${DIR}.structure.min.css +CSSSTRUCTURE = ${STRUCTUREFILE}.css +CSSSTRUCTUREMIN = ${STRUCTUREFILE}.min.css CSSTHEME = default # The files to include when compiling the JS files