forked from sheetjs/sheetjs
		
	- ExtendScript write quirks (fixes #986 h/t @grefel) - BIFF8 write number formats (fixes #987 h/t @scwood) - xlsx.extendscript.js library script - readFile / writeFile support ExtendScript - flow update
		
			
				
	
	
		
			17 lines
		
	
	
		
			287 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			287 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
APPS= aftereffects estoolkit illustrator indesign photoshop
 | 
						|
TARGETS=$(patsubst %,%.jsx,$(APPS))
 | 
						|
 | 
						|
.PHONY: all
 | 
						|
all: deps $(TARGETS)
 | 
						|
 | 
						|
.PHONY: deps
 | 
						|
deps:
 | 
						|
	cp ../../dist/xlsx.extendscript.js .
 | 
						|
 | 
						|
%.base:
 | 
						|
	echo "#target $*" > $@
 | 
						|
 | 
						|
.PHONY: $(TARGETS)
 | 
						|
$(TARGETS):%.jsx:%.base test.jsx
 | 
						|
	cat $^ > $@
 |