mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-08 12:56:48 +00:00
11 lines
179 B
Makefile
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 $< $@
|