first commit

This commit is contained in:
valeh
2020-12-22 14:30:09 +02:00
commit 26b0ba5954
1832 changed files with 17777948 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
CFLAGS = -I../../csrc -g -Wall
#CFLAGS = -O4 -Wall
SRC = $(shell ls ../../csrc/*.c 2>/dev/null) test.c
OBJ = $(SRC:.c=.o)
stdio: $(OBJ)
$(CC) $(CFLAGS) $(LDFLAGS) $(OBJ) -o stdio
clean:
-rm $(OBJ) stdio
test:
./stdio