forked from sheetjs/sheetjs
		
	- removed CFB test (fixes #654 h/t @wolfgang42) - book_append_sheet optional name (fixes #652 h/t @jomel) - strict mode compliance (h/t @simon-p-r @loongdefect @appersonj) - flow fixes (h/t @jameskraus for help with Date#getYear) - fixed minifier to generate ExtendScript-compatible code
		
			
				
	
	
		
			18 lines
		
	
	
		
			303 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			303 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
APPS= aftereffects estoolkit illustrator indesign photoshop
 | 
						|
TARGETS=$(patsubst %,%.jsx,$(APPS))
 | 
						|
 | 
						|
.PHONY: all
 | 
						|
all: deps $(TARGETS)
 | 
						|
 | 
						|
.PHONY: deps
 | 
						|
deps:
 | 
						|
	cp ../../shim.js .
 | 
						|
	cp ../../dist/xlsx.core.min.js .
 | 
						|
 | 
						|
%.base:
 | 
						|
	echo "#target $*" > $@
 | 
						|
 | 
						|
.PHONY: $(TARGETS)
 | 
						|
$(TARGETS):%.jsx:%.base test.jsx
 | 
						|
	cat $^ > $@
 |