summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOri Bernstein <ori@eigenstate.org>2020-11-21 16:13:20 -0800
committerOri Bernstein <ori@eigenstate.org>2020-11-21 16:13:20 -0800
commit03f209427b97f100a55fb490f8bc0332eda2db95 (patch)
treeb5fe8cb1705a0e5f9da88b83e0048d65fd73f109
parent6dd605dbe273c97f522102ba0324a985583eb86a (diff)
downloadplan9front-03f209427b97f100a55fb490f8bc0332eda2db95.tar.xz
upas: make 'all' the default target
When consolidating the duplicated targets, the one that actually got built ended up arbitrary. Put in a 'default' target that runs 'mk all'.
-rw-r--r--sys/src/cmd/upas/mkfile3
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/src/cmd/upas/mkfile b/sys/src/cmd/upas/mkfile
index 8f78351ad..2edc24a38 100644
--- a/sys/src/cmd/upas/mkfile
+++ b/sys/src/cmd/upas/mkfile
@@ -24,6 +24,9 @@ PROGS=\
#libs must be made first
DIRS=$LIBS $PROGS
+default:V:
+ mk all
+
all install installall clean nuke:V:
for (i in $DIRS) @{
cd $i