From 7b782cd4082e4d8aae483b5e4b68b62063ec2615 Mon Sep 17 00:00:00 2001 From: "A. Wilcox" Date: Fri, 22 Apr 2022 03:11:53 -0500 Subject: Add initial hostname(1) implementation --- Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 26b890c..4e355cb 100644 --- a/Makefile +++ b/Makefile @@ -1,18 +1,24 @@ .POSIX: -all: getconf/getconf localedef/localedef +all: getconf/getconf hostname/hostname localedef/localedef getconf/getconf: cd getconf && $(MAKE) +hostname/hostname: + cd hostname && $(MAKE) + localedef/localedef: cd localedef && ${MAKE} clean: cd getconf && $(MAKE) clean + cd hostname && $(MAKE) clean + cd localedef && $(MAKE) clean install: mkdir -p $(DESTDIR)/usr/bin mkdir -p $(DESTDIR)/usr/share/man/man1 cd getconf && $(MAKE) install + cd hostname && $(MAKE) install cd localedef && $(MAKE) install -- cgit v1.2.3-70-g09d2