git: 9front

Download patch

ref: ca93939fe26e3e771ef8dbddbedbf6fd64faa877
parent: 0572968dfc9fc527dbcc7115ad30df1e5f990787
author: Ori Bernstein <ori@eigenstate.org>
date: Sat Nov 21 11:13:20 EST 2020

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'.

--- a/sys/src/cmd/upas/mkfile
+++ b/sys/src/cmd/upas/mkfile
@@ -24,6 +24,9 @@
 #libs must be made first
 DIRS=$LIBS $PROGS
 
+default:V:
+	mk all
+
 all install installall clean nuke:V:
 	for (i in $DIRS) @{
 		cd $i
--