diff options
author | Ori Bernstein <ori@eigenstate.org> | 2021-08-22 17:47:38 +0000 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2021-08-22 17:47:38 +0000 |
commit | bcfee7b54757eb64cade34e476cf0dba672832f6 (patch) | |
tree | 487953479c5633262cd7267ecbe96050aa95677e /sys/src/mkfile | |
parent | abe0534492a790de821b520129c70628ba54ed48 (diff) |
revert 8c228a123fa0c6062570964011854302bbf57242: accidental commit
was testing out the git/import tweaks and accidentally
pushed this commit. No comment on whether we want it,
but it definitely wasn't ready for merge.
Oops.
Diffstat (limited to 'sys/src/mkfile')
-rw-r--r-- | sys/src/mkfile | 31 |
1 files changed, 8 insertions, 23 deletions
diff --git a/sys/src/mkfile b/sys/src/mkfile index 7711200b6..00c1800c8 100644 --- a/sys/src/mkfile +++ b/sys/src/mkfile @@ -1,12 +1,5 @@ </$objtype/mkfile -SUPPORTED_OBJS=\ - 386\ - amd64\ - arm\ - arm64\ - mips\ - LIBS=\ lib9p\ libString\ @@ -59,29 +52,21 @@ none:VQ: all install clean nuke:VQ: date - if (~ $objtype $SUPPORTED_OBJS) { - for (i in $LIBS $SUBSYS $CMDS) @{ - cd $i - mk $target - } + for (i in $LIBS $SUBSYS $CMDS) @{ + cd $i + mk $target } - if not - echo $objtype arch not supported by 9front >[1=2] date installall:V: echo "installall not supported" release:V: - if (~ $objtype $SUPPORTED_OBJS) { - mk nuke - rm -f /$objtype/lib/ape/*.a - rm -f /$objtype/lib/*.a - mk install - mk clean - } - if not - echo $objtype architecture not supported >[1=2] + mk nuke + rm -f /$objtype/lib/ape/*.a + rm -f /$objtype/lib/*.a + mk install + mk clean kernels:V: for (i in 9 boot) @{ |