1
mirror of https://gitlab.com/jessieh/qrprinter.git synced 2024-10-18 09:51:47 +00:00

Move Fennel binary

This commit is contained in:
Jessie Hildebrandt 2021-10-07 15:58:40 -04:00
parent 189573147d
commit c1272d8626
2 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@
SRC_DIR = src SRC_DIR = src
BUILD_DIR = build BUILD_DIR = build
FENNEL = ./fennel-0.10.0-x86_64 FENNEL = ./bin/fennel-0.10.0-x86_64
fnl_files := $(shell find $(SRC_DIR)/ -type f -name '*.fnl') fnl_files := $(shell find $(SRC_DIR)/ -type f -name '*.fnl')
lua_files := $(patsubst $(SRC_DIR)/%.fnl, $(BUILD_DIR)/%.lua, $(fnl_files)) lua_files := $(patsubst $(SRC_DIR)/%.fnl, $(BUILD_DIR)/%.lua, $(fnl_files))
@ -13,12 +13,12 @@ lua_files := $(patsubst $(SRC_DIR)/%.fnl, $(BUILD_DIR)/%.lua, $(fnl_files))
all: $(lua_files) all: $(lua_files)
install:
@echo "Leaving installation up to luarocks..."
$(BUILD_DIR)/%.lua: $(SRC_DIR)/%.fnl $(BUILD_DIR)/%.lua: $(SRC_DIR)/%.fnl
mkdir -p "$(@D)" mkdir -p "$(@D)"
$(FENNEL) --compile $< > $@ $(FENNEL) --compile $< > $@
install:
@echo "Leaving installation up to luarocks..."
clean: clean:
rm -rf $(BUILD_DIR) rm -rf $(BUILD_DIR)