first commit

This commit is contained in:
2024-07-16 16:47:13 +09:00
commit a06137a6ee
19 changed files with 37055 additions and 0 deletions

15
co/Makefile Normal file
View File

@@ -0,0 +1,15 @@
CC=tcc
CFLAGS= -c -Wall -g
SRC:=$(wildcard *.c)
OBJ:=$(SRC:.c=.o)
all: co
clean:
rm -f $(OBJ)
%.o: %.c
$(CC) $(CFLAGS) -o $@ $<
co: $(OBJ)