21 lines
513 B
Makefile
21 lines
513 B
Makefile
PACKAGE_NAME = treestyletab
|
|
|
|
all: xpi
|
|
|
|
xpi: buildscript/makexpi.sh
|
|
cp buildscript/makexpi.sh ./
|
|
if [ -f chrome.manifest ]; then rm chrome.manifest; fi
|
|
cp jar-chrome.manifest chrome.manifest
|
|
./makexpi.sh -n $(PACKAGE_NAME)
|
|
rm ./makexpi.sh
|
|
|
|
omnixpi: buildscript/makexpi.sh
|
|
cp buildscript/makexpi.sh ./
|
|
if [ -f chrome.manifest ]; then rm chrome.manifest; fi
|
|
cp omnixpi-chrome.manifest chrome.manifest
|
|
./makexpi.sh -n $(PACKAGE_NAME)
|
|
rm ./makexpi.sh -o
|
|
|
|
buildscript/makexpi.sh:
|
|
git submodule update --init
|