applied another patch from olegfink, thx, re-enabled du in build chain - 9base - revived minimalist port of Plan 9 userland to Unix
HTML git clone git://git.suckless.org/9base
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit c0a69251c8988bdbabf4f3d3e20f40e363990c6c
DIR parent 56196e76fd80ff6fdd6365d8fa028d8b4675ff4b
HTML Author: Anselm R Garbe <garbeam@gmail.com>
Date: Mon, 10 Aug 2009 15:08:41 +0100
applied another patch from olegfink, thx, re-enabled du in build chain
Diffstat:
M Makefile | 4 ++--
M std.mk | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
---
DIR diff --git a/Makefile b/Makefile
@@ -1,9 +1,9 @@
-# 9base - awk basename cal cat cleanname echo grep rc sed seq sleep
+# 9base - awk basename cal cat cleanname du echo grep rc sed seq sleep
# hoc sort tee test touch tr uniq from Plan 9
include config.mk
-SUBDIRS = lib9 yacc awk basename bc dc cal cat cleanname date echo grep ls \
+SUBDIRS = lib9 yacc awk basename bc dc du cal cat cleanname date echo grep ls \
hoc rc read sed seq sleep sort tee test touch tr uniq
all:
DIR diff --git a/std.mk b/std.mk
@@ -1,7 +1,7 @@
# std.mk - included by most Makefiles in subdirs
-OFILES = ${TARG}.o
-MANFILES = ${TARG}.1
+OFILES ?= ${TARG}.o
+MANFILES ?= ${TARG}.1
include ../config.mk