Makefile: add install target which exports flags for dependents.
This commit is contained in:
parent
ba0f154cba
commit
1e69b23756
1 changed files with 10 additions and 1 deletions
11
Makefile
11
Makefile
|
@ -149,7 +149,16 @@ image: image-dep
|
||||||
archive: $(ARCHIVE)
|
archive: $(ARCHIVE)
|
||||||
image-dep: $(OBJS) $(LIBS)
|
image-dep: $(OBJS) $(LIBS)
|
||||||
@echo \# Creating image [$(ARCH)]
|
@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 a single project (remove `build/`)
|
||||||
clean:
|
clean:
|
||||||
|
|
Loading…
Add table
Reference in a new issue