forked from sheetjs/sheetjs
		
	- new ExtendScript demo - Base64 shim improvements h/t @davidchambers @sheetjsdev - jszip improvements to support extendscript
		
			
				
	
	
		
			19 lines
		
	
	
		
			315 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			315 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
APPS= aftereffects estoolkit illustrator indesign photoshop
 | 
						|
TARGETS=$(patsubst %,%.jsx,$(APPS))
 | 
						|
 | 
						|
.PHONY: all
 | 
						|
all: deps $(TARGETS)
 | 
						|
 | 
						|
.PHONY: deps
 | 
						|
deps:
 | 
						|
	cp ../../shim.js .
 | 
						|
	cp ../../jszip.js .
 | 
						|
	cp ../../xlsx.flow.js .
 | 
						|
 | 
						|
%.base:
 | 
						|
	echo "#target $*" > $@
 | 
						|
 | 
						|
.PHONY: $(TARGETS)
 | 
						|
$(TARGETS):%.jsx:%.base test.jsx
 | 
						|
	cat $^ > $@
 |