refactor: simplify the Plan 9 runtime loop

This commit is contained in:
2026-08-12 17:26:55 +09:00
parent 211a6917b2
commit 91931196e2
4 changed files with 5 additions and 22 deletions

View File

@@ -14,7 +14,7 @@ OBJS = $(SRCS:.c=.o)
all: $(PROG) xim gtk
$(PROG): $(OBJS)
$(LD) -o $@ $(OBJS) -lthread -lString -lbio -lxcb -lm $(PKG_LIBS)
$(LD) -o $@ $(OBJS) -lthread -lbio -lxcb -lm $(PKG_LIBS)
$(OBJS): dat.h fn.h ipc.h
# Avoid Arch's GLIBC_2.43 sqrtf optimization for older glibc runtimes.