You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
380 B
19 lines
380 B
xpi:
|
|
mkdir -p build
|
|
cd chrome; zip -r pEp4Tb@pEp.security.xpi . ; cd ..
|
|
mv chrome/pEp4Tb@pEp.security.xpi build
|
|
|
|
runtime:
|
|
mkdir -p build
|
|
mkdir -p runtime-chrome
|
|
cp -R chrome/ runtime-chrome
|
|
cp tests/runtime/*.js runtime-chrome/content
|
|
cd runtime-chrome; zip -r runtime.xpi . ; cd ..
|
|
mv runtime-chrome/runtime.xpi build
|
|
rm -r runtime-chrome
|
|
|
|
clean:
|
|
rm build/*
|
|
|
|
all: xpi
|