Software /
code /
verse
File
Makefile @ 415:37674f8ce263
verse.plugins.pep: Support taking an item id, default to "current"
XEP-0060 recommends using "current" in section 'Singleton Nodes' and
many PEP use cases follow this pattern.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 20 May 2018 00:56:24 +0200 |
parent | 376:c61f8aaf772c |
child | 416:92ce569b9b73 |
line wrap: on
line source
include config.unix ifndef SQUISH $(error Please run ./configure first) endif SOURCE_FILES=$(shell $(SQUISH) --list-files) MISSING_FILES=$(shell $(SQUISH) --list-missing-files) all: verse.lua verse.lua: $(SOURCE_FILES) ./buildscripts/squish install: verse.lua install -t $(LUA_DIR) -m 644 $^ clean: rm verse.lua $(MISSING_FILES): mkdir -p "$(@D)" wget "$(PROSODY_URL)$@" -O "$@" rsm.lib.lua: wget https://hg.prosody.im/prosody-modules/raw-file/tip/mod_mam/rsm.lib.lua -O rsm.lib.lua release: $(MISSING_FILES) rm config.unix .PHONY: all release clean install