Skip to content

Commit

Permalink
Update makefile: add help
Browse files Browse the repository at this point in the history
  • Loading branch information
fabrixxm committed Jun 21, 2019
1 parent de75d52 commit 0bff60f
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@ PROFILEPATH=$(shell ./devtools.py --profile)
CACHEPATH=$(shell ./devtools.py --cache)


.PHONY: clean run help all

all: ${OUTPUT}

${OUTPUT}: install.rdf chrome.manifest ${CHROMEFILES} ${COMPONENTSFILES} ${JSFILES}
zip -r ${OUTPUT} install.rdf chrome.manifest chrome components calendar-js


.PHONY: clean run
clean:
rm -f ${OUTPUT}

Expand All @@ -23,3 +25,12 @@ run:

dev-install:
echo $(PWD) > "${PROFILEPATH}/extensions/yearview@kirgroup.com"

help:
@echo "targets:"
@echo
@echo "\tall\t\tcreate or update ${OUTPUT} (default)"
@echo "\tclean\t\tdelete build"
@echo "\trun\t\trun thunderbird with clean startup cache and the js console"
@echo "\tdev-install\tinstall Year-View in thunderbird in development mode"
@echo

0 comments on commit 0bff60f

Please sign in to comment.