Last active
December 21, 2015 03:58
-
-
Save falcondai/6245939 to your computer and use it in GitHub Desktop.
Makefile for packaging chrome extensions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
EXT_NAME=omni | |
all: clean pages package | |
pages: | |
jade jade/*.jade -Po . | |
clean: | |
rm -rf *~ | |
rm -f $(EXT_NAME).zip | |
package: manifest.json | |
zip -r $(EXT_NAME) * -x jade/ jade/* Makefile $(EXT_NAME).zip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment