This commit is contained in:
Gustav Louw 2018-03-29 12:32:59 -07:00
parent 9beb6bd037
commit f34a9a699e
3 changed files with 1 additions and 3 deletions

View File

@ -33,12 +33,10 @@ endif
# Link.
$(BIN): $(SRCS:.c=.o)
echo $(CC) *.o -o $(BIN)
$(CC) $(CFLAGS) $(SRCS:.c=.o) $(LDFLAGS) -o $(BIN)
# Compile.
%.o : %.c Makefile
echo $(CC) -c $*.c
$(CC) $(CFLAGS) -MMD -MP -MT $@ -MF $*.td -c $<
$(RM) $*.d
$(MV) $*.td $*.d

View File

@ -1,4 +1,4 @@
# Tinn
![]("img/logo.PNG")
Tinn (Tiny Neural Network) is a dependency free ANSI-C neural network library.

View File

Before

Width:  |  Height:  |  Size: 5.8 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB