mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-16 22:10:25 +00:00
moved info text to license-info.txt
This commit is contained in:
parent
989f7f1542
commit
7085843b74
6 changed files with 7 additions and 7 deletions
6
Makefile
6
Makefile
|
|
@ -103,9 +103,9 @@ all: init js min css cssmin notify
|
|||
# Build the normal CSS file.
|
||||
css: init
|
||||
# Build the CSS file
|
||||
@@cat INTRO.txt | ${SED_VER} > ${OUTPUT}/${CSS}
|
||||
@@cat LICENSE-INFO.txt | ${SED_VER} > ${OUTPUT}/${CSS}
|
||||
@@cat ${CSSFILES} >> ${OUTPUT}/${CSS}
|
||||
@@cat INTRO.txt | ${SED_VER} > ${OUTPUT}/${CSSSTRUCTURE}
|
||||
@@cat LICENSE-INFO.txt | ${SED_VER} > ${OUTPUT}/${CSSSTRUCTURE}
|
||||
@@cat ${CSSSTRUCTUREFILES} >> ${OUTPUT}/${CSSSTRUCTURE}
|
||||
|
||||
# Build the minified CSS file
|
||||
|
|
@ -119,7 +119,7 @@ cssmin: init css
|
|||
# Build the normal JS file
|
||||
js: init
|
||||
# Build the JavaScript file
|
||||
@@cat INTRO.txt | ${SED_VER} > ${OUTPUT}/${JS}
|
||||
@@cat LICENSE-INFO.txt | ${SED_VER} > ${OUTPUT}/${JS}
|
||||
@@cat ${JSFILES} >> ${OUTPUT}/${JS}
|
||||
|
||||
# Create the output directory. This is in a separate step so its not dependant on other targets
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
$files = array_merge($files, array(
|
||||
'../../../INTRO.txt',
|
||||
'../../../LICENSE-INFO.txt',
|
||||
'../../structure/jquery.mobile.core.css',
|
||||
'../../structure/jquery.mobile.transitions.css',
|
||||
'../../structure/jquery.mobile.grids.css',
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
$type = 'text/css';
|
||||
$files = array(
|
||||
'../../../js/jquery.mobile.intro.js',
|
||||
'../../../LICENSE-INFO.txt',
|
||||
'jquery.mobile.theme.css'
|
||||
);
|
||||
$base = dirname(__FILE__);
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
$type = 'text/css';
|
||||
$files = array(
|
||||
'../../../INTRO.txt',
|
||||
'../../../LICENSE-INFO.txt',
|
||||
'jquery.mobile.theme.css'
|
||||
);
|
||||
$base = dirname(__FILE__);
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
$type = 'text/javascript';
|
||||
$files = array(
|
||||
'INTRO.txt',
|
||||
'LICENSE-INFO.txt',
|
||||
'jquery.ui.widget.js',
|
||||
'jquery.mobile.widget.js',
|
||||
'jquery.mobile.media.js',
|
||||
|
|
|
|||
Loading…
Reference in a new issue