1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-13 22:05:46 +01:00

Support make install{xpi} for {Melo,Tele}dactyl.

This commit is contained in:
Doug Kearns
2011-01-07 02:26:46 +11:00
parent b1e8834f3b
commit 7eb7772b61
3 changed files with 15 additions and 8 deletions

View File

@@ -64,9 +64,9 @@ help:
@echo " make jar - build a JAR ($(JAR))" @echo " make jar - build a JAR ($(JAR))"
@echo " make xpi - build an XPI ($(XPI_NAME))" @echo " make xpi - build an XPI ($(XPI_NAME))"
@echo " make installxpi - build an XPI and install it to your profile" @echo " make installxpi - build an XPI and install it to your profile"
@echo " make install - installs this source tree directly to your Firefox profile" @echo " make install - installs this source tree directly to your $(HOSTAPP) profile"
@echo ' set $$PROFILE to select a profile and $$PROFILEPATHS to change' @echo ' set $$PROFILE to select a profile by name and $$PROFILEPATHS'
@echo ' the directory where profiles are searched' @echo ' to change the directory where profiles are searched'
@echo " make release - updates update.rdf (this is not for you)" @echo " make release - updates update.rdf (this is not for you)"
@echo " make dist - uploads to Google Code (this is not for you)" @echo " make dist - uploads to Google Code (this is not for you)"
@echo " make clean - clean up" @echo " make clean - clean up"
@@ -140,7 +140,7 @@ install:
else pwd; \ else pwd; \
fi >"$$ext" fi >"$$ext"
installxpi: xpi installxpi: xpi
$(FIREFOX) $(XPI) $(HOSTAPP) $(XPI)
$(RDF): $(RDF_IN) Makefile $(RDF): $(RDF_IN) Makefile
@echo "Preparing release..." @echo "Preparing release..."

View File

@@ -2,10 +2,10 @@
NAME = melodactyl NAME = melodactyl
FIREFOX ?= songbird SONGBIRD ?= songbird
HOSTAPP ?= $(SONGBIRD) HOSTAPP ?= $(SONGBIRD)
PROFILEPATHS ?= "$$HOME/.songbird" \ PROFILEPATHS ?= "$$HOME/.songbird2" \
"$$HOME/Library/Songbird" \ "$$HOME/Library/Songbird2" \
"$$APPDATA/Songbird" "$$APPDATA/Songbird2"
include ../common/Makefile include ../common/Makefile

View File

@@ -2,4 +2,11 @@
NAME = teledactyl NAME = teledactyl
THUNDERBIRD ?= thunderbird
HOSTAPP ?= $(THUNDERBIRD)
PROFILEPATHS ?= "$$HOME/.thunderbird" \
"$$HOME/Library/Thunderbird" \
"$$APPDATA/Thunderbird" \
"$$AppData/Thunderbird"
include ../common/Makefile include ../common/Makefile