2024-06-28 20:33:21 +08:00

11 lines
179 B
Makefile

# SPDX-License-Identifier: MPL-2.0
SOURCES := $(wildcard *.sh)
TARGETS := $(addprefix $(BUILD_DIR)/, $(SOURCES))
.PHONY: all
all: $(TARGETS)
$(BUILD_DIR)/%.sh: %.sh
@cp $< $@