summaryrefslogtreecommitdiffstats
path: root/project/project.mk
blob: 847cde99e21383eb0cc5df88860e686c0f5d0e70 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

.PHONY: target-host-info

target-host-info: $(TARGET_DIR)/etc/issue $(TARGET_DIR)/etc/hostname

$(TARGET_DIR)/etc/issue: .config
	mkdir -p $(TARGET_DIR)/etc
	echo "" > $(TARGET_DIR)/etc/issue
	echo "" >> $(TARGET_DIR)/etc/issue
	echo "$(BANNER)" >> $(TARGET_DIR)/etc/issue

$(TARGET_DIR)/etc/hostname: .config
	mkdir -p $(TARGET_DIR)/etc
	echo "$(TARGET_HOSTNAME)" > $(TARGET_DIR)/etc/hostname