libpanel: rename to match clean rule

when running 'mk clean', we get a stray
libpanel.$O.a, because our 'mk clean'
rule expects libpanel.a$O.

This causes build failures after mk clean
on a symbol change.
Ori Bernstein 2021-08-03 02:10:10 +00:00
parent edfc72b500
commit 7f832df53d
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
</$objtype/mkfile
LIB=libpanel.$O.a
LIB=libpanel.a$O
OFILES=\
button.$O\
canvas.$O\

View File

@ -1,7 +1,7 @@
</$objtype/mkfile
TARG=mothra
LIB=libpanel/libpanel.$O.a
LIB=libpanel/libpanel.a$O
CFILES= \
snoop.c \
forms.c \