mirror of
				https://github.com/Jermolene/TiddlyWiki5
				synced 2025-10-29 22:53:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			350 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			350 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| PACKAGE = asyncjs
 | |
| NODEJS = $(if $(shell test -f /usr/bin/nodejs && echo "true"),nodejs,node)
 | |
| 
 | |
| BUILDDIR = dist
 | |
| 
 | |
| all: build
 | |
| 
 | |
| build: $(wildcard  lib/*.js)
 | |
| 	mkdir -p $(BUILDDIR)
 | |
| 	uglifyjs lib/async.js > $(BUILDDIR)/async.min.js
 | |
| 
 | |
| test:
 | |
| 	nodeunit test
 | |
| 
 | |
| clean:
 | |
| 	rm -rf $(BUILDDIR)
 | |
| 
 | |
| lint:
 | |
| 	nodelint --config nodelint.cfg lib/async.js
 | |
| 
 | |
| .PHONY: test build all
 | 
