summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAndrew Wilcox <AWilcox@Wilcox-Tech.com>2016-04-17 10:59:34 -0500
committerAndrew Wilcox <AWilcox@Wilcox-Tech.com>2016-04-17 10:59:34 -0500
commit9f86fab6af15168734ce81e4f93c3576dd360352 (patch)
tree5318492501b7b1e9d63d3284eadeec8ee4b974a9 /Makefile
parent4a2c467b9ddef475eb26a849958fd7c7e0e281d4 (diff)
downloadshimmy-9f86fab6af15168734ce81e4f93c3576dd360352.tar.gz
shimmy-9f86fab6af15168734ce81e4f93c3576dd360352.tar.bz2
shimmy-9f86fab6af15168734ce81e4f93c3576dd360352.tar.xz
shimmy-9f86fab6af15168734ce81e4f93c3576dd360352.zip
Add new localedef(1) stub
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 54200fb..26b890c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,13 @@
.POSIX:
-all: getconf/getconf
+all: getconf/getconf localedef/localedef
getconf/getconf:
cd getconf && $(MAKE)
+localedef/localedef:
+ cd localedef && ${MAKE}
+
clean:
cd getconf && $(MAKE) clean
@@ -12,3 +15,4 @@ install:
mkdir -p $(DESTDIR)/usr/bin
mkdir -p $(DESTDIR)/usr/share/man/man1
cd getconf && $(MAKE) install
+ cd localedef && $(MAKE) install