Makefile: add install target which exports flags for dependents.

This commit is contained in:
xinyangli 2024-12-10 17:24:14 +08:00
parent ba0f154cba
commit 1e69b23756
Signed by: xin
SSH key fingerprint: SHA256:UU5pRTl7NiLFJbWJZa+snLylZSXIz5rgHmwjzv8v4oE

View file

@ -149,7 +149,16 @@ image: image-dep
archive: $(ARCHIVE)
image-dep: $(OBJS) $(LIBS)
@echo \# Creating image [$(ARCH)]
.PHONY: image image-dep archive run $(LIBS)
.PHONY: image image-dep archive run $(LIBS) install
install: $(INSTALL_DIR)/flags.mk
### Install rules
$(addprefix $(INSTALL_DIR)/, $(LIBS)): %:
$(INSTALL_DIR)/flags.mk:
@echo "CFLAGS += " $(INTERFACE_CFLAGS) > $(DST_DIR)/flags.mk
@echo "LDFLAGS += " $(INTERFACE_LDFLAGS) >> $(DST_DIR)/flags.mk
### Clean a single project (remove `build/`)
clean: