diff --git a/Makefile b/Makefile index 280d3a7..d4eaad9 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ SRC_DIR = src 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') 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) -install: - @echo "Leaving installation up to luarocks..." - $(BUILD_DIR)/%.lua: $(SRC_DIR)/%.fnl mkdir -p "$(@D)" $(FENNEL) --compile $< > $@ +install: + @echo "Leaving installation up to luarocks..." + clean: rm -rf $(BUILD_DIR) diff --git a/fennel-0.10.0-x86_64 b/bin/fennel-0.10.0-x86_64 similarity index 100% rename from fennel-0.10.0-x86_64 rename to bin/fennel-0.10.0-x86_64