From 1e69b237562857dbb2c830685d6f47e94957e3d1 Mon Sep 17 00:00:00 2001 From: xinyangli Date: Tue, 10 Dec 2024 17:24:14 +0800 Subject: [PATCH] Makefile: add install target which exports flags for dependents. --- Makefile | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1d55214..01e3183 100644 --- a/Makefile +++ b/Makefile @@ -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: