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