Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bootstrap
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
bootstrap
Commits
088bfcc1
Commit
088bfcc1
authored
Jul 02, 2011
by
Jacob Thornton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add formal checks to makefile to make sure people have neccessary software installed
add date to built file!
parent
52dfbe65
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
11 deletions
+26
-11
Makefile
Makefile
+24
-9
bootstrap-1.0.0.css
bootstrap-1.0.0.css
+1
-1
lib/bootstrap.less
lib/bootstrap.less
+1
-1
No files found.
Makefile
View file @
088bfcc1
# NOTE: you must have the less npm package installed globally to build!
# To install less package run: $npm install less -g
# watchr -e "watch('lib/.*\.less') { system 'make' }"
DATE
=
$(
shell
DATE
)
BOOTSTRAP
=
./bootstrap-1.0.0.css
BOOTSTRAP_MIN
=
./bootstrap-1.0.0.min.css
BOOTSTRAP_LESS
=
./lib/bootstrap.less
LESS_COMPESSOR
?=
`
which lessc
`
WATCHR
?=
`
which watchr
`
build
:
@
lessc ./lib/bootstrap.less
>
./bootstrap-1.0.0.css
@
lessc ./lib/bootstrap.less
>
./bootstrap-1.0.0.min.css
--compress
@
echo
"Bootstrap successfully built! -
`
date
`
"
@
@if
test
!
-z
${LESS_COMPESSOR}
;
then
\
sed
's/@DATE/'
"
${DATE}
"
'/'
${BOOTSTRAP_LESS}
>
${BOOTSTRAP_LESS}
.tmp
;
\
lessc
${BOOTSTRAP_LESS}
.tmp
>
${BOOTSTRAP}
;
\
lessc
${BOOTSTRAP_LESS}
.tmp
>
${BOOTSTRAP_MIN}
--compress
;
\
rm
-f
${BOOTSTRAP_LESS}
.tmp
;
\
echo
"Bootstrap successfully built! -
`
date
`
"
;
\
else
\
echo
"You must have the LESS compiler installed in order to build Bootstrap."
;
\
echo
"You can install it by running: npm install less -g"
;
\
fi
watch
:
@
echo
"Watching less files for changes..."
@
watchr
-e
"watch('lib/.*
\.
less') { system 'make' }"
@
@if
test
!
-z
${LESS_COMPESSOR}
;
then
\
echo
"Watching less files..."
;
\
watchr
-e
"watch('lib/.*
\.
less') { system 'make' }"
;
\
else
\
echo
"You must have the WATCHR installed in order to build Bootstrap."
;
\
echo
"You can install it by running: gem install watchr"
;
\
fi
.PHONY
:
build
\ No newline at end of file
.PHONY
:
build watch
\ No newline at end of file
bootstrap-1.0.0.css
View file @
088bfcc1
...
...
@@ -6,7 +6,7 @@
* http://www.apache.org/licenses/LICENSE-2.0
*
* Designed and built with all the love in the world @twitter by @mdo and @fat.
* Date:
{{ date }}
* Date:
Sat Jul 2 10:45:47 PDT 2011
*/
/*
* Reset.less
...
...
lib/bootstrap.less
View file @
088bfcc1
...
...
@@ -6,7 +6,7 @@
* http://www.apache.org/licenses/LICENSE-2.0
*
* Designed and built with all the love in the world @twitter by @mdo and @fat.
* Date:
{{ date }}
* Date:
@DATE
*/
// CSS Reset
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment