Software /
code /
verse
File
Makefile @ 506:3610196c5e83 default tip
Merge with Zash.
author | Trần H. Trung <xmpp:trần.h.trung@trung.fun> |
---|---|
date | Sat, 08 Jul 2023 02:17:52 +0700 |
parent | 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 "$@" release: $(MISSING_FILES) rm config.unix .PHONY: all release clean install