first commit

This commit is contained in:
2025-12-23 20:21:56 +09:00
commit dcd1147638
148 changed files with 176109 additions and 0 deletions

19
Makefile Normal file
View File

@@ -0,0 +1,19 @@
CC = 9c
LD = 9l
CFLAGS = -Wall -Wextra -O2
PROG = strans
SRCS = $(wildcard *.c)
OBJS = $(SRCS:.c=.o)
all: $(PROG)
$(PROG): $(OBJS)
$(LD) -o $@ $(OBJS) -lthread -lString -lbio -lxcb -lm
$(OBJS): dat.h fn.h ipc.h
clean:
rm -f $(OBJS) $(PROG)
.PHONY: all clean