add algo files
This commit is contained in:
14
heavyHash/Makefile
Normal file
14
heavyHash/Makefile
Normal file
@@ -0,0 +1,14 @@
|
||||
SRCS = heavyhash.c obtc.c sha3.c
|
||||
|
||||
OBJS = $(SRCS:.c=.o)
|
||||
CC = gcc
|
||||
CCFLAGS = -Wall
|
||||
|
||||
libkas.a:$(OBJS)
|
||||
ar -rv libkas.a $(OBJS)
|
||||
|
||||
%.o:%.c
|
||||
$(CC) $(CCFLAGS) -c $< -o $@
|
||||
|
||||
clean:
|
||||
rm -rf *.o *.a
|
||||
Reference in New Issue
Block a user