初始提交

This commit is contained in:
aixiao 2022-09-07 15:41:40 +08:00
commit 8f3c5cf6a4
2 changed files with 1041 additions and 0 deletions

16
Makefile Normal file
View File

@ -0,0 +1,16 @@
CROSS_COMPILE ?=
CC := $(CROSS_COMPILE)gcc
STRIP := $(CROSS_COMPILE)strip
CFLAGS += -g -Wall
LIBS = -static
OBJ := sha
all: sha.o
$(CC) $(CFLAGS) -o $(OBJ) $^ $(LIBS)
.c.o:
$(CC) $(CFLAGS) -c $<
clean:
rm -rf *.o
rm $(OBJ)

1025
sha.c Normal file

File diff suppressed because it is too large Load Diff