This commit is contained in:
Gustav Louw 2018-03-30 13:10:23 -07:00
parent 171bd195e9
commit 90b1f406b3
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,5 @@
# Makefile with support for Windows (mingw32) and NIX (clang / gcc).
CC = gcc
NAME = tinn
@ -7,6 +9,7 @@ SRCS += test.c
SRCS += Tinn.c
# CompSpec defined in windows environment.
ifdef ComSpec
BIN = $(NAME).exe
else
@ -32,10 +35,12 @@ else
endif
# Link.
$(BIN): $(SRCS:.c=.o)
$(CC) $(CFLAGS) $(SRCS:.c=.o) $(LDFLAGS) -o $(BIN)
# Compile.
%.o : %.c Makefile
$(CC) $(CFLAGS) -MMD -MP -MT $@ -MF $*.td -c $<
$(RM) $*.d

View File

@ -23,6 +23,10 @@ Tinn (Tiny Neural Network) is a dependency free ANSI-C neural network library.
return 0;
}
Run the sample:
For a demo, get some data:
wget http://archive.ics.uci.edu/ml/machine-learning-databases/semeion/semeion.data
And then build and run the test sample:
make; ./tinn