1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-03 15:15:49 +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 xpi - build an XPI ($(XPI_NAME))"
@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 ' set $$PROFILE to select a profile and $$PROFILEPATHS to change'
@echo ' the directory where profiles are searched'
@echo " make install - installs this source tree directly to your $(HOSTAPP) profile"
@echo ' set $$PROFILE to select a profile by name and $$PROFILEPATHS'
@echo ' to change the directory where profiles are searched'
@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 clean - clean up"
@@ -140,7 +140,7 @@ install:
else pwd; \
fi >"$$ext"
installxpi: xpi
$(FIREFOX) $(XPI)
$(HOSTAPP) $(XPI)
$(RDF): $(RDF_IN) Makefile
@echo "Preparing release..."

View File

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

View File

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