30 行
		
	
	
	
		
			1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
		
		
			
		
	
	
			30 行
		
	
	
	
		
			1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| 
								 | 
							
								VERSION=1.4.0
							 | 
						||
| 
								 | 
							
								DATE=$(shell DATE)
							 | 
						||
| 
								 | 
							
								BOOTSTRAP = ./bootstrap.css
							 | 
						||
| 
								 | 
							
								BOOTSTRAP_MIN = ./bootstrap.min.css
							 | 
						||
| 
								 | 
							
								BOOTSTRAP_LESS = ./lib/bootstrap.less
							 | 
						||
| 
								 | 
							
								LESS_COMPRESSOR ?= `which lessc`
							 | 
						||
| 
								 | 
							
								WATCHR ?= `which watchr`
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								build:
							 | 
						||
| 
								 | 
							
									@@if test ! -z ${LESS_COMPRESSOR}; then \
							 | 
						||
| 
								 | 
							
										sed -e 's/@VERSION/'"v${VERSION}"'/' -e '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:
							 | 
						||
| 
								 | 
							
									@@if test ! -z ${WATCHR}; then \
							 | 
						||
| 
								 | 
							
									  echo "Watching less files..."; \
							 | 
						||
| 
								 | 
							
									  watchr -e "watch('lib/.*\.less') { system 'make' }"; \
							 | 
						||
| 
								 | 
							
									else \
							 | 
						||
| 
								 | 
							
										echo "You must have the watchr installed in order to watch Bootstrap less files."; \
							 | 
						||
| 
								 | 
							
										echo "You can install it by running: gem install watchr"; \
							 | 
						||
| 
								 | 
							
									fi
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								.PHONY: build watch
							 |