有没有办法让参数化的Makefile目标。我正在尝试使用通配符,但我似乎无法使其工作。
问题是我只想要%部分。因为我需要生成一些路径。
bin/bootstrap.ino.bin: bin/
$(ARDUINO_BUILDER) $(BUILD_FLAGS) bootstrap/bootstrap.ino
bin/sensorscan.ino.bin: bin/
$(ARDUINO_BUILDER) $(BUILD_FLAGS) sensorscan/sensorscan.ino
bin/httpprober.ino.bin: bin/
$(ARDUINO_BUILDER) $(BUILD_FLAGS) httpprober/httpprober.ino
类似于:
bin/%.ino.bin: bin/
$(ARDUINO_BUILDER) $(BUILD_FLAGS) %/%.ino