19 lines
244 B
Makefile
19 lines
244 B
Makefile
default : myprogram
|
|
|
|
all : myprogram
|
|
|
|
clean :
|
|
rm *.o myprogram
|
|
|
|
myprogram : main.o activations.o randomness.o training.o network.o neurons.o
|
|
gcc -Wall $^ -o myprogram -lm
|
|
|
|
%.o : %.c
|
|
gcc -Wall $< -c
|
|
|
|
send :
|
|
git add .
|
|
git commit
|
|
git push
|
|
|
|
|