Software /
code /
verse
File
Makefile @ 450:e72deac76e0e
plugins.smacks: Change to track enabled state per direction
Counting outgoing stanzas should start after <enable> is sent, while
counting incoming stanzas should star after receiving <enabled/>
This should also help with failed resumptions
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sat, 19 Feb 2022 15:57:24 +0100 |
parent | 419:bf2fe3fc2f73 |
child | 502:783188a44b0a |
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) $(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-0.10/raw-file/0.10.1/util/rsm.lua -O rsm.lib.lua release: $(MISSING_FILES) rm config.unix .PHONY: all release clean install