# This makefile will turn your application into a .xulapp package. In the # future it might also be able to turn it into a installer. include manifest.mk $(PACKAGE_NAME): $(addprefix _stage/,$(APP_FILES)) rm -f $(PACKAGE_NAME) (cd _stage && zip -r9D - .) > $(PACKAGE_NAME) $(addprefix _stage/,$(APP_FILES)): _stage/% : app/% install -d $(dir $@) install $< $(dir $@) clean: rm $(PACKAGE_NAME) rm -rf _stage