mirror of
				https://github.com/flynx/pWiki.git
				synced 2025-11-03 20:40:10 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			37 lines
		
	
	
		
			493 B
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			493 B
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
	
	
 | 
						|
 | 
						|
 | 
						|
BOOTSTRAP_FILES := \
 | 
						|
	$(wildcard bootstrap/*) \
 | 
						|
	$(wildcard bootstrap/*/*) \
 | 
						|
	README.md
 | 
						|
 | 
						|
LOCAL_MODULES := \
 | 
						|
	node_modules/ig-object/object.js \
 | 
						|
	node_modules/ig-actions/actions.js \
 | 
						|
	node_modules/ig-features/features.js
 | 
						|
 | 
						|
 | 
						|
 | 
						|
bootstrap.js: scripts/bootstrap.js $(BOOTSTRAP_FILES)
 | 
						|
	node $<
 | 
						|
 | 
						|
 | 
						|
 | 
						|
.PHONY: bootstrap
 | 
						|
bootstrap: bootstrap.js
 | 
						|
 | 
						|
 | 
						|
node_modules:
 | 
						|
	npm install
 | 
						|
 | 
						|
 | 
						|
dev: node_modules $(LOCAL_MODULES)
 | 
						|
	cp $(LOCAL_MODULES) lib/
 | 
						|
 | 
						|
 | 
						|
clean:
 | 
						|
	rm -f bootstrap.js
 | 
						|
 | 
						|
 |