18 lines
		
	
	
		
			313 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			313 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #
 | |
| # Build extension package
 | |
| #
 | |
| VERSION   = 2.0
 | |
| SOURCES   = manifest.json data/* icons/*
 | |
| PACKAGE   = ../emptyem-$(VERSION).xpi
 | |
| EXCLUDES  = Makefile README.md *.DS_Store
 | |
| 
 | |
| build: $(PACKAGE)
 | |
| 	@echo "Done"
 | |
| 
 | |
| $(PACKAGE): $(SOURCES)
 | |
| 	zip -r -FS $(PACKAGE) * -x $(EXCLUDES)
 | |
| 	@echo "Built $(PACKAGE)"
 | |
| 
 | |
| clean:
 | |
| 	rm $(PACKAGE)
 |