first commit

This commit is contained in:
2025-12-30 21:19:07 +09:00
parent dd451e517a
commit 43d561508f
16 changed files with 5668 additions and 0 deletions

17
Makefile Normal file
View File

@@ -0,0 +1,17 @@
CC = 9c
LD = 9l
CFLAGS = `pkg-config --cflags dbus-1`
LIBS = `pkg-config --libs dbus-1` -lxcb -lXau -lm
SRCS = $(wildcard *.c)
OBJS = $(SRCS:.c=.o)
snoti: $(OBJS)
$(LD) -o $@ $(OBJS) $(LIBS)
%.o: %.c dat.h fn.h
$(CC) $(CFLAGS) $<
clean:
rm -f $(OBJS) snoti