zsh-autosuggestions/Makefile

36 lines
679 B
Makefile
Raw Normal View History

2022-05-16 21:11:12 +02:00
SRC_DIR := ./src
2016-02-05 23:14:08 +01:00
SRC_FILES := \
2016-02-05 23:14:08 +01:00
$(SRC_DIR)/config.zsh \
$(SRC_DIR)/util.zsh \
2016-02-05 23:14:08 +01:00
$(SRC_DIR)/bind.zsh \
$(SRC_DIR)/highlight.zsh \
$(SRC_DIR)/widgets.zsh \
$(SRC_DIR)/strategies/*.zsh \
$(SRC_DIR)/fetch.zsh \
2016-07-20 05:04:18 +02:00
$(SRC_DIR)/async.zsh \
2016-02-05 23:14:08 +01:00
$(SRC_DIR)/start.zsh
HEADER_FILES := \
DESCRIPTION \
URL \
VERSION \
LICENSE
PLUGIN_TARGET := zsh-autosuggestions.zsh
all: $(PLUGIN_TARGET)
$(PLUGIN_TARGET): $(HEADER_FILES) $(SRC_FILES)
2016-02-13 21:42:02 +01:00
cat $(HEADER_FILES) | sed -e 's/^/# /g' > $@
cat $(SRC_FILES) >> $@
2016-02-05 23:14:08 +01:00
.PHONY: clean
clean:
rm $(PLUGIN_TARGET)
2016-02-05 23:14:08 +01:00
.PHONY: test
2017-02-17 03:18:03 +01:00
test: all
2017-02-26 22:19:09 +01:00
@test -n "$$TEST_ZSH_BIN" && echo "Testing zsh binary: $(TEST_ZSH_BIN)" || true
2017-02-17 03:18:03 +01:00
bundle exec rspec $(TESTS)